Alex0319
Alex0319
全部文章
分类
PAT(11)
poj(16)
算法(1)
题解(30)
归档
标签
去牛客网
登录
/
注册
欲买桂花同载酒,终不似,少年游
保持好奇,保持积极
全部文章
(共17篇)
poj2967 c++ TLE g++ 891ms
c++ TLE到死,G++水过 #include<cstdio> #include<algorithm> using namespace std; int num[1000005]; int n=0; int res = 0,c; bool Judge() { if(...
poj
WATER
2019-08-01
1
508
poj1299 0ms
#include<cstdio> #include<cstring> #include<algorithm> #define PI 3.14159 //水题 using namespace std; int main() { char s1[20],s2[...
poj
WATER
2019-07-31
0
588
poj2498 125ms
#include<cstdio> #include<cstring> using namespace std; int a[3]={9,3,7}; //原来是倒着乘的,我佛了 int main() { int n,len,sum; int cnt,j,x; ...
poj
WATER
2019-07-28
1
515
poj2602 大数加法 G++64ms,C++1469ms
简单的大数模拟不能用int数组,否则一定会超时,不管G还是C,所以这里考查的就是字符串的输出了,puts比一个个输出快。 #include<cstdio> #include<cstring> using namespace std; //水题,直接模拟大数加法就好了 char...
poj
WATER
2019-07-28
1
686
poj3750 简单模拟
直接模拟就好,加一个标志数组表示此人是否被挑出 #include<cstdio> #include<cstring> using namespace std; char kids[100][20]; bool flag[100]={false}; //找规律 int mai...
poj
WATER
2019-05-28
0
553
poj3619 推公式
#include<cstdio> #include<cmath> using namespace std; int main() { int n,k,now; double ans; int s,t,r,tmp,x; scanf("%...
poj
WATER
2019-07-13
0
453
poj1007
#include<cstdio> #include<algorithm> #include<cstring> using namespace std; //逆序数排序 struct Node{ int cnt; char str[105]; } D...
poj
WATER
2019-07-13
0
403
首页
上一页
1
2
下一页
末页