申屠志刚
申屠志刚
全部文章
C++
ACM(1)
C(128)
C.++(1)
CTF(44)
C语言(34)
DP(4)
JAVA(2)
Python(1)
博弈论(1)
并查集(2)
最小生成树(1)
最短路(2)
未归档(435)
浙江理工大学2018年10月赛(2)
生成树(1)
申屠志刚的ACM之路(37)
申屠志刚的CTF之路(2)
矩阵(1)
线段树(1)
经典问题(1)
背包问题(1)
语法(1)
归档
标签
去牛客网
登录
/
注册
申屠志刚
你已经是一个成熟ACMER了,要学会自己DEBUG了。
全部文章
/ C++
(共380篇)
[USACO1.4]母亲的牛奶 Mother's Milk
https://www.luogu.org/problemnew/show/P1215 题解:模拟+BFS /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostream>...
C++
模拟
BFS
2019-03-22
0
877
[USACO1.4]等差数列 Arithmetic Progressions
https://www.luogu.org/problemnew/show/P1214 题解:枚举前两个数,即可推出公差,从而推出整个数列,判断即可。 /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #...
C++
枚举
2019-03-22
0
614
[USACO1.3]号码锁 Combination Lock
https://www.luogu.org/recordnew/show/17460324 题解: /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostream> #i...
C++
2019-03-22
0
540
[USACO1.3]虫洞wormhole
https://www.luogu.org/problemnew/show/P1444 题解: /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostream> #inc...
C++
2019-03-22
0
589
Chocolates
https://codeforces.com/contest/1139/problem/B 题解:倒着做,尽量选大,直到0; /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<io...
C++
思维
2019-03-22
0
554
Even Substrings
https://codeforces.com/contest/1139/problem/A 题解:末尾是偶数就是偶数 /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostre...
C++
思维
2019-03-22
0
462
[USACO1.3]牛式 Prime Cryptarithm
https://www.luogu.org/problemnew/show/P1211 题解: /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostream> #inc...
C++
贪心
2019-03-21
0
537
[USACO1.3]混合牛奶 Mixing Milk
https://www.luogu.org/problemnew/show/P1208 题解: /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostream> #inc...
C++
贪心
2019-03-21
0
500
[USACO1.3]修理牛棚 Barn Repair
https://www.luogu.org/problemnew/show/P1209 题解: 典型的贪心题目 我们可以先假设只有一块木板从编号最小的牛棚一直铺到编号最大的牛棚,然后断开m-1处。自然要按相邻牛棚的编号差从大到小断开才能使我们断开的地方可以有效节省木板长度(因为中间省去的要更多...
C++
贪心
2019-03-21
0
669
[USACO1.2]双重回文数 Dual Palindromes
https://www.luogu.org/problemnew/show/P1207 题解: /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostream> #inc...
C++
2019-03-21
0
776
首页
上一页
10
11
12
13
14
15
16
17
18
19
下一页
末页