摘要: 两次广搜#include#include#include#include#includeusing namespace std;const int maxn=305;int N,M,Sx,Sy;int Map[maxn][maxn];int Y[maxn][maxn];int e[maxn][max... 阅读全文
posted @ 2015-11-01 15:32 Fighting_Heart 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 水题#include#include#include#includeusing namespace std;int tot[2000];int n;int a[105];int main(){ while(~scanf("%d",&n)){ memset(tot,0,sizeof tot... 阅读全文
posted @ 2015-11-01 12:13 Fighting_Heart 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 坑题#include#include#include#includeusing namespace std;int main(){ int N,S,T; while(~scanf("%d%d%d",&N,&S,&T)) { if((S==1&&T==N)||(S==N... 阅读全文
posted @ 2015-11-01 12:12 Fighting_Heart 阅读(128) 评论(0) 推荐(0) 编辑
摘要: DescriptionGW 是ZUFE的神犇,有一天他想到一种神奇的变换,并且将它命名为GW变换对于一个数字n,该变换后的值GW(n)为,先令X=n第一步,如果X为个位数,GW(n)=X,否则执行第二步;第二步,X的奇数位置的数字之和为a,偶数位置的和为b, X=a*b, 执行第一步;现在我们有T个... 阅读全文
posted @ 2015-11-01 11:29 Fighting_Heart 阅读(187) 评论(0) 推荐(0) 编辑