申屠志刚
申屠志刚
全部文章
分类
ACM(1)
C(128)
C++(380)
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了。
全部文章
(共6篇)
Cup
The WHU ACM Team has a big cup, with which every member drinks water. Now, we know the volume of the water in the cup, can you tell us it height? The...
C
二分
高精度
2018-11-04
0
859
阶乘之和
https://www.luogu.org/problemnew/show/P1009 /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostream> #include&...
C
高精度
2018-12-09
0
454
国王游戏
https://www.luogu.org/problemnew/show/P1080 /* *@Author: STZG *@Language: C++ */ #include <bits/stdc++.h> #include<iostream> #include&...
C
高精度
贪心
2018-12-16
0
619
高精度计算(High-Precision_Calculation)
在说高精度加减乘除运算之前,我们先搞明白什么是高精度运算? 实际上高精度就是说参与运算的数据和运算结果的范围,超出标准数据类型能表示的数据大小范围的运算。这个时候,如果要得到正确的计算结果,显然不能依靠普通方法实现了。而要在普通运算原理的基础上,加以辅助算法来实现超大数据的计算。例如...
C++
高精度
2018-12-31
0
854
处女座的砝码
https://ac.nowcoder.com/acm/contest/327/C C++版本一 #include<bits/stdc++.h> using namespace std; int main(){ long double n; cin>>n...
C++
数学
高精度
2019-01-27
0
565
处女座和小姐姐(三)
https://ac.nowcoder.com/acm/contest/329/G 题解: std #include <stdio.h> #include <string.h> #include <stdlib.h> #define SET0(x) m...
C++
高精度
DFS
2019-01-31
0
523