wxyww
wxyww
全部文章
未归档
精品(28)
题解(65)
归档
标签
去牛客网
登录
/
注册
wxyww
夜空霓虹 都是我不要的繁荣
全部文章
/ 未归档
(共8篇)
[noip][2017]
Day1T1 30分思路: 倒着枚举答案z,用扩展欧几里得求解,如果能找到两个非负整数x,y使得ax+by=z则继续枚举,直到无解为止 100分: 最适用与考场上的做法,根据30分思路打表找规律。 30分代码: #include<cstdio> #include<ios...
noip
2018-08-29
0
393
[noip][2016]
Day1T1 思路: 非常简单的一个模拟 代码: #include<cstdio> #include<iostream> using namespace std; const int N=1e5+100; int a[N],n,m,cr[N]; char s[N][5...
noip
2018-09-08
0
563
[noip][2015]
Day1T1 思路 炒鸡良心的模拟题 代码: #include<cstdio> #include<iostream> using namespace std; const int N=42; int a[N][N],x,y,ans; int main() { ...
noip
2018-09-29
0
514
[noip][2014]
Day1t1 思路 就是模拟,只是怎样更优雅的模拟而已,不过多点if也没关系,能拿分才是关键嘛。 代码: #include<cstdio> #include<iostream> using namespace std; typedef long long ll; in...
noip
2018-09-29
0
488
[noip][2017]
Day1T1 30分思路: 倒着枚举答案z,用扩展欧几里得求解,如果能找到两个非负整数x,y使得ax+by=z则继续枚举,直到无解为止 100分: 最适用与考场上的做法,根据30分思路打表找规律。 30分代码: #include<cstdio> #include<ios...
noip
2018-08-29
0
556
[noip][2016]
Day1T1 思路: 非常简单的一个模拟 代码: #include<cstdio> #include<iostream> using namespace std; const int N=1e5+100; int a[N],n,m,cr[N]; char s[N][5...
noip
2018-09-08
0
419
[noip][2015]
Day1T1 思路 炒鸡良心的模拟题 代码: #include<cstdio> #include<iostream> using namespace std; const int N=42; int a[N][N],x,y,ans; int main() { ...
noip
2018-09-29
0
493
[noip][2014]
Day1t1 思路 就是模拟,只是怎样更优雅的模拟而已,不过多点if也没关系,能拿分才是关键嘛。 代码: #include<cstdio> #include<iostream> using namespace std; typedef long long ll; in...
noip
2018-09-29
0
424