状压

Corrupt governors always find ways to get dirty money. Paint something, then sell the worthless painting at a high price to someone who wants to bribe him/her on an auction, this seemed a safe way for mayor X to make money.

Because a lot of people praised mayor X’s painting(of course, X was a mayor), mayor X believed more and more that he was a very talented painter. Soon mayor X was not satisfied with only making money. He wanted to be a famous painter. So he joined the local painting associates. Other painters had to elect him as the chairman of the associates. Then his painting sold at better price.

The local middle school from which mayor X graduated, wanted to beat mayor X’s horse fart(In Chinese English, beating one’s horse fart means flattering one hard). They built a wall, and invited mayor X to paint on it. Mayor X was very happy. But he really had no idea about what to paint because he could only paint very abstract paintings which nobody really understand. Mayor X’s secretary suggested that he could make this thing not only a painting, but also a performance art work.

This was the secretary’s idea:

The wall was divided into N segments and the width of each segment was one cun(cun is a Chinese length unit). All segments were numbered from 1 to N, from left to right. There were 30 kinds of colors mayor X could use to paint the wall. They named those colors as color 1, color 2 … color 30. The wall’s original color was color 2. Every time mayor X would paint some consecutive segments with a certain kind of color, and he did this for many times. Trying to make his performance art fancy, mayor X declared that at any moment, if someone asked how many kind of colors were there on any consecutive segments, he could give the number immediately without counting.

But mayor X didn’t know how to give the right answer. Your friend, Mr. W was an secret officer of anti-corruption bureau, he helped mayor X on this problem and gained his trust. Do you know how Mr. Q did this?

#include<bits/stdc++.h>
using namespace std;
int n,m;
int r[100],x[100],y[100];
int mp[60][60];
int tp[60][60];
const int INF = 0x3f3f3f3f;
bool pan(int x,int y){
	if(x>=1&&y>=1&&x<=n&&y<=n){
		return true;
	}
	return false;
}
int gao(int hav[]){
	int cnt = 0,tot = 0;
	memcpy(tp,mp,sizeof(mp));
	for(int i=0;i<m;++i){
		if(!hav[i]||!r[i])continue;
		++cnt;
		for(int j=-r[i];j<=r[i];++j){
			for(int k=-r[i];k<=r[i];++k){
				int xx=x[i]+j,yy=y[i]+k;
				if(!pan(xx,yy)) continue;
				if(abs(j)+abs(k)<=r[i]&&!tp[xx][yy]){
					++tot,tp[xx][yy]=1;
				}
			}
		}
	}
	return (tot+m==n*n)?cnt : INF;
}
void solve(){
	int mask=1<<m;
	int ret=INF;
	for(int i=0;i<mask;++i){
		int hav[15]={0};
		for(int j=0;j<m;++j){
			if(i&(1<<j))hav[j]=1;
		}
		ret=min(ret,gao(hav));
	}
	if(ret==INF){
		cout<<"-1"<<endl;
	}
	else{
		cout<<ret<<endl; 
	} 
} 
int main(){
	while(cin>>n&&n!=0){
		cin>>m;
		memset(mp,0,sizeof(mp));
		for(int i=0;i<m;i++){
			cin>>x[i]>>y[i];
			mp[x[i]][y[i]]=1;
		}
		for(int i=0;i<m;i++){
			cin>>r[i];
		}
		solve();
	}
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值