update
This commit is contained in:
parent
b0c9fe405a
commit
4c81e798a2
@ -118,3 +118,6 @@ ll ksm(ll a,ll b,ll M){
|
||||
|
||||
## Day12
|
||||
>二分图,染色,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