暴力
ndsffx501ccy
这个作者很懒,什么都没留下…
展开
-
1800: [Ahoi2009]fly 飞行棋
#include #include using namespace std; inline int read(){ int x=0,f=1;char ch=getchar(); while(ch'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}原创 2014-06-19 18:21:26 · 491 阅读 · 0 评论 -
1675: [Usaco2005 Feb]Rigging the Bovine Election 竞选划区 (暴力)
#include #include #include using namespace std; const int dx[4]={-1,1,0,0},dy[4]={0,0,1,-1}; int d[60][60],s[80],q[80],ans; bool mp[60][60]; char ch[100]; bool jud(){ memset(d,0,sizeof(d)); int nx[8原创 2014-10-19 19:03:13 · 256 阅读 · 0 评论