摘要: A 空 B题 set暴力水过 C 签到题 D题 kmp模板题 E 空 阅读全文
posted @ 2019-09-10 18:30 hh13579 阅读(126) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; inline __int128 read(){ __int128 x=0,f=1; char ch=getchar(); while(ch<'0'||ch>'9'){ if(ch=='-') f=-1; ch=getchar(); } while(ch>='0'&&ch<='9'){ x=x*10+ch-' 阅读全文
posted @ 2019-09-10 01:07 hh13579 阅读(1301) 评论(0) 推荐(0)