CCF
A798283635
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CCF 201703-4 地铁修建(spfa)
#include<iostream>#include<cstring>#include<queue>#include<algorithm>#define INF 0x3f3f3f3f #define maxn 2000000using namespace std;using namespace std; int dis[maxn];//储存起点到当前点的最短路 int v原创 2018-01-04 22:09:39 · 354 阅读 · 0 评论 -
CCF 碰撞的小球(暴力枚举)
#include<bits/stdc++.h>using namespace std;int n,L,t;vector<int>vis[3000];map<int,int>dict;int to[3000];int find(int k){ for(int i=0;i<=L;i++) { vis[i].clear(); } for(int i=1;i&...原创 2018-07-12 19:31:33 · 831 阅读 · 0 评论 -
python3 文件读取
解决Python读取文件时出现UnicodeDecodeError: 'gbk' codec can't decode byte...用Python在读取某个html文件时会遇到下面问题:出问题的代码:1 if __name__ == '__main__':2 fileHandler = open('../report.html', mode='r')3 4 ...转载 2018-12-29 09:58:17 · 235 阅读 · 0 评论
分享