代码:
#include <iostream> #include <cstdio> #include <cstring> #include <string> #include <cmath> #include <vector> #include <algorithm> #include <map> const int N = 1001; using namespace std; int main() { int x,y,z; for(int i=1;i<=sqrt(N);i++) { for(int j=1;j<=sqrt(N);j++) { for(int k = 1;k<=sqrt(N);k++) { if(i*i + j*j + k*k==1000) { printf("%d %d %d\n",i,j,k); } } } } return 0; }
#include <iostream> #include <cstdio> #include <cstring> #include <string> #include <cmath> #include <vector> #include <algorithm> #include <map> const int N = 1001; using namespace std; int main() { int mou[20] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; int t = 0; int year = 2014,m = 11,day = 9; while(t<=1000) { int ps = 0; if(m == 2 && year%4==0 && year % 400!=0) { ps = 1; } while(day<=(mou[m]+ps)) { day++; t++; if(t>=1000) break; } if(t>=1000) break; day = 1; m++; if(m==13) { year++; m = 1; } printf("%d %d %d %d\n",year,m,day,t); } printf("%d %d %d\n",year,m,day); return 0; }
#include <iostream> #include <cstdio> #include <cstring> #include <string> #include <cmath> #include <vector> #include <algorithm> #include <map> const int N = 1001; using namespace std; bool solve(int a,int b) { int ok[20]; memset(ok,0,sizeof(ok)); while(a) { ok[a%10]++; a/=10; } while(b) { ok[b%10]++; b/=10; } bool flag = true; for(int i=0;i<10;i++) { if(ok[i] != 1) { flag = false; break; } } return flag; } int main() { for(int i=1;;i++) { int xx = i*i; int xxx = i*i*i; if(solve(xx,xxx)) { printf("%d\n",i); break; } } return 0; }
#include <stdio.h> #include <string.h> void StringInGrid(int width, int height, const char* s) { int i,k; char buf[1000]; strcpy(buf, s); if(strlen(s)>width-2) buf[width-2]=0; printf("+"); for(i=0;i<width-2;i++) printf("-"); printf("+\n"); for(k=1; k<(height-1)/2;k++){ printf("|"); for(i=0;i<width-2;i++) printf(" "); printf("|\n"); } printf("|"); printf("%*s%s%*s",(width - strlen(buf)-2)/2," ",buf,(width - strlen(buf)-2)/2+(width - strlen(buf)-2)%2," "); //填空 printf("|\n"); for(k=(height-1)/2+1; k<height-1; k++){ printf("|"); for(i=0;i<width-2;i++) printf(" "); printf("|\n"); } printf("+"); for(i=0;i<width-2;i++) printf("-"); printf("+\n"); } int main() { StringInGrid(20,6,"abcd1234"); return 0; }
13*13*13*13 * 12*12*12*12 * 11*11*11*11 * 10 =
86709989583360(感觉有点不对,求大牛指点)
手链样式
小明有3颗红珊瑚,4颗白珊瑚,5颗黄玛瑙。
他想用它们串成一圈作为手链,送给女朋友。
现在小明想知道:如果考虑手链可以随意转动或翻转,一共可以有多少不同的组合样式呢?
请你提交该整数。不要填写任何多余的内容或说明性的文字。
27719
#include <iostream> #include <cstdio> #include <cstring> #include <string> #include <cmath> #include <vector> #include <algorithm> #include <map> const int N = 1001; using namespace std; typedef __int64 LL; map<LL,int> m; int cnt[20] = {1,1,1,2,2,2,2,3,3,3,3,3}; bool solve(int a[]) { for(int i=0;i<12;i++) { LL tmp = 0; for(int j = i;j<12;j++) { tmp = tmp *10 + a[j]; } for(int j = 0;j<i;j++) tmp = tmp *10 + a[j]; //printf("%I64d\n",tmp); if(m[tmp]){} else { m[tmp] = 1; return true; } } LL tmp = 0; for(int i=11;i>=0;i--) tmp = tmp *10 + a[i]; if(m[tmp]){} else { m[tmp] = 1; return true; } return false; } int main() { int ans = 0; //solve(cnt); while(next_permutation(cnt,cnt+12)) { LL tmp = 0; for(int i=0;i<12;i++) { tmp = tmp * 10 + cnt[i]; } //printf("%I64d\n",tmp); if(solve(cnt)) { ans++; } } printf("%d\n",ans); return 0; }
#include <algorithm> #include <map> const int N = 1001; using namespace std; int main() { int n; while(~scanf("%d",&n)) { int ans = n,tmp = n; while(tmp>=3) { int ps = tmp; ans+=ps/3; tmp = ps%3 + ps/3; } printf("%d\n",ans); } return 0; }
灾后重建
Pear市一共有N(<=50000)个居民点,居民点之间有M(<=200000)条双向道路相连。这些居民点两两之间都可以通过双向道路到达。这种情况一直持续到最近,一次严重的地震毁坏了全部M条道路。
震后,Pear打算修复其中一些道路,修理第i条道路需要Pi的时间。不过,Pear并不打算让全部的点连通,而是选择一些标号特殊的点让他们连通。
Pear有Q(<=50000)次询问,每次询问,他会选择所有编号在[l,r]之间,并且 编号 mod K = C 的点,修理一些路使得它们连通。由于所有道路的修理可以同时开工,所以完成修理的时间取决于花费时间最长的一条路,即涉及到的道路中Pi的最大值。
你能帮助Pear计算出每次询问时需要花费的最少时间么?这里询问是独立的,也就是上一个询问里的修理计划并没有付诸行动。
【输入格式】
第一行三个正整数N、M、Q,含义如题面所述。
接下来M行,每行三个正整数Xi、Yi、Pi,表示一条连接Xi和Yi的双向道路,修复需要Pi的时间。可能有自环,可能有重边。1<=Pi<=1000000。
接下来Q行,每行四个正整数Li、Ri、Ki、Ci,表示这次询问的点是[Li,Ri]区间中所有编号Mod Ki=Ci的点。保证参与询问的点至少有两个。
【输出格式】
输出Q行,每行一个正整数表示对应询问的答案。
【样例输入】
7 10 4
1 3 10
2 6 9
4 1 5
3 7 4
3 6 9
1 5 8
2 7 4
3 2 10
1 7 6
7 6 9
1 7 1 0
1 7 3 1
2 5 1 0
3 7 2 1
【样例输出】
9
6
8
8
【数据范围】
对于20%的数据,N,M,Q<=30
对于40%的数据,N,M,Q<=2000
对于100%的数据,N<=50000,M<=2*10^5,Q<=50000. Pi<=10^6. Li,Ri,Ki均在[1,N]范围内,Ci在[0,对应询问的Ki)范围内。
小数据据说最小生成树可解,大数据应该是树链剖分,just读了读题目
原文地址:http://blog.csdn.net/y990041769/article/details/44994585