flyflyfly00
flyflyfly00
全部文章
分类
CCF(6)
Codeforces(3)
TJU-OJ(29)
一些总结(9)
力扣LeetCode(1)
洛谷luogu(6)
题解(52)
归档
标签
去牛客网
登录
/
注册
flyflyfly00的博客
全部文章
(共106篇)
P218 p3
没有找到提交连接。。。要用到longlong注意latest的计算方法 #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <...
2021-04-22
0
488
P215 Instrction Arrangement
书上还写了计算最晚开始时间的代码,这题里用不上,计算最早开始时间就行。 #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <...
2021-04-22
0
505
P211 确定比赛名次
下面这个在dev c++上能跑,但是提交到HDU和vjudge的c++的时候报编译错误,无法识别优先队列的greater。但是把HDU和vjudge提交的类型改为g++,就能通过了。 #include <iostream> #include <cstdio> #include...
2021-04-22
0
494
P209 Legal or Not
使用队列。 #include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <vector> #include <queue...
2021-04-22
0
497
P208 I Wanna Go Home
http://poj.org/problem?id=3767AC代码 #include <iostream> using namespace std; const int N = 601; const int INF = 10000000; int n, m; int path[N...
2021-04-21
0
508
P207 最短路径
这样写答案不对 #include <iostream> using namespace std; const int mod = 100000; const int INF = 100000000; const int N = 100; int n, m; int path[N][...
2021-04-20
12
847
P205 最短路径问题
错误,最少花费比实际少#include using namespace std; const int N = 1000;const int INF = 10000000; int n, m, s, t;int length[N][N];int price[N][N];int dis[N];int ...
2021-04-20
0
601
P203 畅通工程续
这里的N比较小,所以不用优先队列,用for循环搜索最近的点也能通过,书上的答案是用结构体和优先队列。 #include <iostream> using namespace std; const int N = 200; const int INF = 1000000; int n...
2021-04-20
0
444
P201 Freckles
第一次提交时样例能通过,但是测试不通过,得到的数远大于正确结果,是因为没有计算好边的数量。直接把边数用n处理了,实际上应该是n*(n-1)/2,即每两点间有一个边。 #include <iostream> #include <cstdio> #include <algo...
2021-04-17
0
426
202009-2 风险人群筛查
http://118.190.20.162/view.page?gpid=T112第一次提交 60分,显示超时 #include <iostream> #include <cstdio> #include <cstring> #include <math.h...
2021-04-11
0
556
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页