摘要:
优先队列priority_queue 包含头文件#include <queue> 定义:priority_queue<Type, Container, Functional>Type 就是数据类型,Container 就是容器类型(Container必须是用数组实现的容器,比如vector,dequ 阅读全文
摘要:
洛谷1226 快速幂,计算b^p%k,模板使用int,注意可能要开long long 阅读全文
摘要:
洛谷P1601 不压位: 压nn位: long long范围的压位,最多可压18位(nn≤18) 阅读全文
摘要:
洛谷P3371 spfa: 1 //spfa:求s到各点的最短路,可含负权边 2 #include <cstdio> 3 4 using namespace std; 5 6 const int max_n=10010,max_m=500050,inf=2147483647; 7 8 struct 阅读全文
摘要:
暑假想学一学C++ 早退役了高考后才转C++的oier——我真是太蒻了 阅读全文
摘要:
不少时间没写程序了,暑假一定要熟悉一下。 阅读全文
摘要:
1 program rrr(input,output); 2 type 3 treetype=record 4 l,r,d:longint; 5 xy,x,y,x2,s,t:int64; 6 end; 7 var 8 a:array[0..400040]of treetype; 9 x,y,s1,s2:array[0..10... 阅读全文