题目链接 ISAP写法 #include <bits/stdc++.h> using namespace std; typedef long long LL; namespace FastIO { const static int MX=1e6; ; char nc() { static char buf[MX],*p1=buf+MX,*pend=buf+MX; if(p1==pend) { p1=buf; pend=buf+fread(buf,,MX,stdin); if(pend==p1)…