摘要: 1 //Dijkstra 2 #include 3 #include 4 #define Faster ios_base::sync_with_stdio(false),cin.tie(0) 5 #define Read freopen("in.txt","r",stdin),freopen("out.txt","w",stdout) 6 #define Close fclose... 阅读全文
posted @ 2018-05-08 20:05 ouyang_wsgwz 阅读(102) 评论(0) 推荐(0) 编辑
摘要: B. Mancala 阅读全文
posted @ 2018-05-08 19:35 ouyang_wsgwz 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 1 //枚举+BFS 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 using namespace std; 9 10 #define INF 0xfffffff 11 12 int T,N,M,len; 13 char grid[15][15]; 14 ... 阅读全文
posted @ 2018-05-08 16:49 ouyang_wsgwz 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 首先直接通过管理员运行cmd,然后执行 pip install requests 就可以直接安装Requests库了 有个最基本的语句 r = requests.get(url) 通过requests.get,构造一个向服务器请求资源的Request对象(是python内部生成的) get() 返回 阅读全文
posted @ 2018-05-08 12:51 ouyang_wsgwz 阅读(182) 评论(0) 推荐(0) 编辑