Mote8848
Mote8848
全部文章
分类
cf(7)
hdu(6)
noi(9)
Unity3D 学习笔记(2)
数据结构学习笔记(7)
未归档(7)
牛客(15)
菜鸡的acm(10)
归档
标签
去牛客网
登录
/
注册
弟弟tp的博客
一个菜鸡加臭弟弟
全部文章
(共63篇)
hdu 1232 畅通工程
原题链接:点我转移 这个题,就是一个快乐并查集,看根的个数,减去一就行。 #include<iostream> using namespace std; int bin[1010]; int find(int x) { int px=x; while(px!=b...
2019-01-23
0
407
hdu 2018
一个悲伤的题,2018就四个因子,去除1和2018,然后快乐就行 #include <bits/stdc++.h> using namespace std; const int maxn = 2e5 + 10; typedef long long ll; int main() {...
2019-01-22
0
372
Cutting Codeforces Round #493 (Div. 2)
#include<cstdio> #include<cstring> #include<algorithm> #include<iostream> #include<string> #include<vector> #inclu...
2019-01-22
0
432
codeforce 985B Switches and Lamps(暴力+思维)
原题链接:点我转移 #include<cstdio> #include<cstring> #include<algorithm> #include<iostream> #include<string> #include<vec...
2019-01-21
0
516
Codeforces Round #494 (Div. 3) C. Intense Heat
The heat during the last few days has been really intense. Scientists from all over the Berland study how the temperatures and weather change, and the...
2019-01-21
0
572
Codeforces - 934A A Compatible Pair(暴力)
A. A Compatible Pairtime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output Nian is a monster which liv...
2019-01-20
0
451
大整数因子
原题链接:点我转移 #include<bits/stdc++.h> using namespace std; int main() { char c[31]; while(cin>>c) { int len = strlen(c...
2019-01-15
0
399
阶乘和 大整数
///大整数阶乘的和 #include<bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n) { int a[2000]= {1},b[2000]= ...
2019-01-15
0
515
n的阶乘,大整数
和2的n次方基本一样,只不过是把2换出了变化的i了而已,其他的判断操类似 #include<bits/stdc++.h> using namespace std; int main() { int n; while(cin>>n) { ...
2019-01-15
0
366
noi 提取数字串按数值排序
原题链接:点我转移 #include<bits/stdc++.h> using namespace std; int main() { char str[400]; while(cin >> str) { int num[200...
2019-01-11
0
616
首页
上一页
1
2
3
4
5
6
7
下一页
末页