上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页
摘要: #include<iostream.h>#include<math.h>//using namespace std;int main(){ int a,i,jishu; while(cin>>a && a!=0) { jishu=0; i=0; while(!i) { i=a%2; a/=2; if(i==0) jishu++; } ... 阅读全文
posted @ 2010-05-12 13:08 VRS 阅读(139) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;long st[50000];int main(){ int casenum; cin>>casenum; while(casenum--) { int n; cin>>n; int i; st[1]=0; for(i=2;i<=n;i++) cin>>st[... 阅读全文
posted @ 2010-05-12 13:08 VRS 阅读(151) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;int main(){ int casenum; cin>>casenum; while(casenum--) { int sum,dif; cin>>sum>>dif; if(sum<dif || 1==(sum-dif)%2) //当sum<dif或一奇... 阅读全文
posted @ 2010-05-12 13:07 VRS 阅读(185) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;bool fun(int n){ int sum=0; int temp=n; while(temp!=0) { sum+=temp%10; temp/=10; } temp=n; int sum2=0; while(temp!=0) { sum2+=temp%12; temp/=12; } if(su... 阅读全文
posted @ 2010-05-12 13:07 VRS 阅读(156) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;long st[1000000];int main(){ long casenum; cin>>casenum; while(casenum--) { long len,num; cin>>len>>num; long i; for(i=0;i<num;i++)... 阅读全文
posted @ 2010-05-12 13:06 VRS 阅读(226) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<string>using namespace std;struct MAN{ float sp; int a,b; char name[40];}man[3];int main(){ man[0].sp=4.5; man[0].a=150; man[0].b=200; strcpy(man[0].name,"Wide R... 阅读全文
posted @ 2010-05-12 13:05 VRS 阅读(145) 评论(0) 推荐(0) 编辑
摘要: //2345国王金币数//思路:先找出allnum(allnum<=n)使allnum=1+2+3+…+k,同时算出k,则f(allnum)=∑i^2,// 而f(n)=f(allnum)+(n-allnum)*(k+1). 已知公式∑i^2=k*(k+1)*(2k+1)/6#include<iostream>#include<math.h&g... 阅读全文
posted @ 2010-05-12 13:05 VRS 阅读(255) 评论(0) 推荐(0) 编辑
摘要: //关键是一条公式#include <iostream>#include <iomanip>#include <math.h>using namespace std;int main(){ int case_num; cin>>case_num; while(case_num--) { double ka,ori; //这里科学记录法可以作为输入 ... 阅读全文
posted @ 2010-05-12 13:05 VRS 阅读(209) 评论(0) 推荐(0) 编辑
摘要: ///////////////////////////////////////////////////// 1677474 2008-10-25 14:46:52 Accepted 2202 C++ 0 192 VRS //计算编码后再译码的种数//利用分治法,把字符串s二分为s1和s2,再把两部分的种数相乘//注意情况:合并s1和s2时,考虑相邻接的两数可以组成一个编码,还有对0的多种情况的讨论... 阅读全文
posted @ 2010-05-12 13:03 VRS 阅读(281) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;int main(){ int num; while(cin>>num && num!=-1) { int old,cur; int cost; int sum=0; old=0; while(num--) { cin>>cost>>cur; su... 阅读全文
posted @ 2010-05-12 13:01 VRS 阅读(145) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页