申屠志刚
申屠志刚
全部文章
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篇)
Accordion
https://codeforces.com/contest/1101/problem/B 题解: 从左往右找到 [: 记:下标为l 从右往左找到 :] 记:下标为r 查找【l+1,r-1】区间上的 | 数量cnt 答案就是cnt+4 如果不能满足l<r或者找不到 [: 和 :]任...
C++
思维
2019-01-12
0
507
Minimum Integer
https://codeforces.com/contest/1101/problem/A 题解:如果小于l,那么肯定是d,如果大于r那么是(r/d+1)*d; /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h&...
C++
思维
2019-01-12
0
581
筱玛的迷阵探险
https://ac.nowcoder.com/acm/contest/342/C C++版本一 题解: 大佬东西,tql,orz #include<bits/stdc++.h> #define N 21 #define M 10000000 #define Nxt (now&...
C++
折半搜索
DFS
字典树
2019-01-12
0
536
筱玛的排列
https://ac.nowcoder.com/acm/contest/342/B 题解:暴力找规律 /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostream> #...
C++
2019-01-12
0
470
筱玛的快乐
https://ac.nowcoder.com/acm/contest/342/A 题解: /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostream> #inclu...
C++
2019-01-12
0
470
Balanced Ternary String
https://codeforces.com/contest/1102/problem/D 题解: /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostream> #i...
C++
字符串
2019-01-10
0
550
Integer Sequence Dividing
https://codeforces.com/contest/1102/problem/A 题解:找规律 /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostream>...
C++
2019-01-10
0
552
多少个2011
http://oj.acm.zstu.edu.cn/JudgeOnline/problem.php?id=4230 题解: 模拟除法。 设t为被除数也就是201120112011...... 每次输出t/2011,保留t%p; 一直除到他t%p为0为止,记录加了多少次2011。 /* ...
C++
2019-01-09
0
485
讨厌三角形
http://oj.acm.zstu.edu.cn/JudgeOnline/problem.php?id=4262 C++版本一 题解: 假设n长度的铁棍,可以这样分 1 1 2 3 5 8............ 很眼熟是不是,---->斐波那契数列 所以对斐波那契数列求前缀和,当...
C++
前缀和
二分
斐波那契数列
2019-01-08
0
654
铺地砖
http://oj.acm.zstu.edu.cn/JudgeOnline/problem.php?id=3922 题解:简单的DP题,但是数据有问题,数阻不能开long long(所以是个假题) /* *@Author: STZG *@Language: C++ */ #include ...
C++
DP
2019-01-08
0
829
首页
上一页
22
23
24
25
26
27
28
29
30
31
下一页
末页