update
This commit is contained in:
parent
b0c9fe405a
commit
4c81e798a2
@ -117,4 +117,7 @@ ll ksm(ll a,ll b,ll M){
|
|||||||
[树状数组PDF](./day11/FenwickTree/FenwickTree.pdf)
|
[树状数组PDF](./day11/FenwickTree/FenwickTree.pdf)
|
||||||
|
|
||||||
## Day12
|
## Day12
|
||||||
>二分图,染色,BFS遍历
|
>二分图,染色,BFS遍历
|
||||||
|
|
||||||
|
## Day13
|
||||||
|
>单调队列
|
22
day13/P1049/P1049.cpp
Normal file
22
day13/P1049/P1049.cpp
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
#include <cctype>
|
||||||
|
#include <cstdio>
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
|
||||||
|
int main(){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
int readint(){
|
||||||
|
int x=0,w=1;
|
||||||
|
char ch=0;
|
||||||
|
while(!isdigit(ch)){
|
||||||
|
if(ch=='-')w=-1;
|
||||||
|
ch=getchar();
|
||||||
|
}
|
||||||
|
while(isdigit(ch)){
|
||||||
|
x=x*10+(ch-'0');
|
||||||
|
ch=getchar();
|
||||||
|
}
|
||||||
|
return x*w;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user