Alex0319
Alex0319
全部文章
题解
PAT(11)
poj(16)
算法(1)
归档
标签
去牛客网
登录
/
注册
欲买桂花同载酒,终不似,少年游
保持好奇,保持积极
全部文章
/ 题解
(共9篇)
poj3173 找规律输出
#include<cstdio> using namespace std; //水题,找规律 int main() { int n,s; while(~scanf("%d%d",&n,&s)) { for(int i = 0; i&...
poj
WATER
2019-09-07
0
597
poj2070 水题
#include<cstdio> using namespace std; int main() { double a,b,c; bool f = true; double player[3][3]={{4.5,150,200},{6.0,300,500},{5....
poj
WATER
2019-09-04
0
728
poj1595 0ms water
#include<cstdio> using namespace std; //water //素数打表基操吧, 然后预处理维护一个前缀和就好了 const int N = 1000; bool Prim[N+5]= {0}; int sum[N+5]= {0}; void Print...
poj
WATER
2019-09-03
0
563
poj1491水题
#include<cstdio> #include<cmath> #include<algorithm> using namespace std; //water int GCD(int a,int b) { if(a<b) swap...
poj
WATER
2019-09-02
0
471
poj2080 110ms 求日期
求日期和星期,不查怎么知道2000.1.1是星期六呢 #include<cstdio> using namespace std; //2000.1.1 星期六 //暴力吧,想不出什么捷径 bool is_leapyear(int n) { return ((n%4==0&...
poj
WATER
Violent
2019-09-01
0
637
poj3852 字符串指针的使用
#include<cstdio> #include<cstring> using namespace std; //char *s1 = &str[i][ans];表示取第i行 从ans位置开始的字符串 //想到的唯一难点就是如何把截取的字符串去除,开始想了subst...
poj
WATER
2019-08-31
0
603
poj1118 469ms 0(n^3)飘过
#include<cstdio> using namespace std; struct point { int x; int y; } points[705]; int main() { int n; while(scanf("%d",&n),n...
poj
WATER
2019-08-21
0
461
poj2081 16ms
#include<cstdio> #include<bitset> using namespace std; const int Maxn = 500000; int num[Maxn+5]; int tmp; bitset<10000000> bit1; voi...
poj
WATER
2019-08-15
0
439
poj3672 97ms 水题
#include<cstdio> using namespace std; //easy int main() { int m,t,u,f,d,c; scanf("%d%d%d%d%d",&m,&t,&u,&f,&d); g...
poj
WATER
2019-08-14
0
453