申屠志刚
申屠志刚
全部文章
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++
(共15篇)
简单的分数
https://ac.nowcoder.com/acm/contest/322/L 题解:很简单吧??? /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostream>...
C++
模拟
2018-12-31
0
538
PPY的字符串
https://ac.nowcoder.com/acm/contest/322/E 题解:不说了,看代码。啥东西啊 /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostrea...
C++
模拟
2018-12-30
0
614
[USACO1.1]贪婪的送礼者Greedy Gift Givers
https://www.luogu.org/problemnew/show/P1201 /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostream> #include...
C++
模拟
2019-01-02
0
692
小a与"204"
https://ac.nowcoder.com/acm/contest/317/B 题解:贪心 先排4 0组合,如果一个有余与2组合,最后有余的排 /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #i...
C++
贪心
模拟
2019-01-22
0
638
小a的排列
https://ac.nowcoder.com/acm/contest/317/G C++版本一 std 题解:模拟,思维 #include<bits/stdc++.h> using namespace std; const int MAXN = 1e5 + 10, INF...
C++
模拟
思维
2019-01-24
0
618
处女座与cf
https://ac.nowcoder.com/acm/contest/327/B C++版本一 题解:模拟 #include <bits/stdc++.h> using namespace std; map<string,int> mp; int vis[505];...
C++
模拟
2019-01-27
0
569
Lunar New Year and Cross Counting
https://codeforces.com/contest/1106/problem/A C++版本一 题解: 暴力模拟就行了 /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include&l...
C++
模拟
2019-02-04
0
591
[HNOI2003]操作系统
https://www.luogu.org/problemnew/show/P2278 题解: 一个是还未开始的进程,另一个是按照优先级排序的等待进程; 每次做时比较两个序列的队头,如果是当前在运行的进程先结束, 则把此进程输出,并将其弹出优先队列;如果是下一个进程要开始, 则先结算当前在...
C++
优先队列
思维
模拟
2019-03-13
0
865
[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
Median String
https://codeforces.com/contest/1144/problem/E 题意:给定两个字符串,定义一个序列是第一个字符串按字典序到第二个字符串的所有字符串。求这个序列的中间的字符串是什么(保证这个序列个数肯定为奇数) 题解:模拟 /* *@Author: STZG ...
C++
模拟
2019-04-01
0
584
首页
上一页
1
2
下一页
末页