233333333333

假装这个是swordoj的博客233
放些好图

首先%大佬

ORZ minamoto
ORZ Judge
ORZ Axjcy

QAQ假装这是读优

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
inline int () {
static const int L = 1<<15;
static char buf[L],*S=buf,*T=buf;
if(S==T){
T=(S=buf)+fread(buf,1,L,stdin);
if(S==T)return EOF;
}
return *S++;
}

inline int re()
{
static int ch=0;
bool f=0;
while(!isdigit(ch=getc())) if(ch==’-‘) f=1;
int num=ch-‘0’;
while(isdigit(ch=getc())) num=(num<<3)+(num<<1)+ch-‘0’;
return f?-num:num;
}

QAQ假装还是读优

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90

#define reg register
#define fok (ch!=EOF)
#define sep (ch==' '||ch=='n'||ch=='t')
#define dsep !isdigit(ch)
#define neq(a,b) ((a)-(b)>1e-6)
using namespace std;
struct FastIO{
char rbuf[1000002],wbuf[1000002],b,*p1,*p2;
int rs,ws,S;
FastIO(){p1=rbuf,p2=wbuf,S=1000000,rs=1000000,ws=-1,b=1;}
inline void go(){fwrite(wbuf,1,ws+1,stdout)?ws=-1:0;}
inline char getch(){
return rs==S&&
(p1=rbuf,rs=-1,(S=fread(rbuf,1,S+1,stdin)-1)==-1)?
(b=0,EOF):(++rs,*p1++);
}
inline void putch(int x){
ws==1000000&&
(p2=wbuf,ws=-1,fwrite(wbuf,1,1000001,stdout)),++ws,*p2++=x;
}
inline void puts(char str[]){
for(reg int i=0;str[i]!='