Alex0319
Alex0319
全部文章
题解
PAT(11)
poj(16)
算法(1)
归档
标签
去牛客网
登录
/
注册
欲买桂花同载酒,终不似,少年游
保持好奇,保持积极
全部文章
/ 题解
(共2篇)
poj3664 63ms sort水过
#include<cstdio> #include<algorithm> using namespace std; //直接排序,无脑水过 const int N = 50005; struct Node{ int fir; int sec; int ...
SORT
poj
2019-09-08
0
579
poj3618 110ms 绝对值排序
#include<cstdio> #include<algorithm> #include<cmath> using namespace std; //绝对值排序 //没看清题开始 要仔细审题 bool cmp(const int a,const int b) {...
SORT
poj
2019-08-17
0
633