这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include #include #include using namespace std; #define INF -0x3f3f3f3f int a[50600]; int u[50600];//up int d[50600];//down int ans1=INF,n; int main() {…
在讨论《为什么我推的式子这么复杂?》回复:
忘了加.6竟然过了
```cpp #include #include #include using namespace std; int main() { double s,a,b; scanf("%lf%lf%lf",&s,&a,&b); double aa,bb; aa=(3*b*s)-((a*a*s)/b)-(2*a*s); bb=…
```cpp #include #include #include using namespace std; const int maxx=100005; struct data { int to,nt; }node[maxx]; int xx,yy,zz,dd; int son[maxx],father[maxx],…
```cpp #include #include #include using namespace std; char a[10600]; char b[10600]; int aa[10600]; int bb[10600]; int f[10600][10600];//第一串的前i个和第二串的前j个 int t[5…
在讨论《NOIP最后一周,kkksc03的忠告》回复:
后排兹瓷
在讨论《实验证明vector存图比list和deque快而且还省空间》回复:
用的是树剖求LCA
在讨论《关于 [新泰一中] 公开赛的澄清说明》回复:
后排资瓷
在讨论《关于"NOIP Day1.5 难度"模拟赛的爆破事宜》回复:
滋磁
在讨论《颜色数的范围是多少?》回复:
。。。没认真读题
在讨论《吐槽一下样例输入。。》回复:
测试点里会有换行吗?
在讨论《吐槽一下样例输入。。。》回复:
正常是这样 6 5 1 2 3 2 3 3 1 1 3 2 1 4 6 3 2 3 1 1 3 2 1 4 6 3
在讨论《11.1 更新日志 + 部分常见问题答疑》回复:
兹磁
在讨论《对株洲市南方中学的严正声明 & 谴责》回复:
前排资瓷
```cpp #include #include using namespace std; typedef long long ll; long long pow_mod(ll x,ll n,ll mod){ //快速幂1 ll res=1; while(n>0){ if(n&1)res=res*x%mod; x=x*…
在讨论《为什么递归代码RE了》回复:
```cpp long long pow_mod(ll x,ll n,ll mod){ ll res=1; while(n>0){ if(n&1)res=res*x%mod; x=x*x%mod; n>>=1; } return res; } ```
在讨论《为啥样例对了还是零分》回复:
火钳刘明
```cpp #include #include #include #include #include using namespace std; char a1[10000],b1[10000],h[10000]; int a[10000],b[10000],c[10000]; int main(){ int la,l…
在讨论《为什么只有50分???》回复:
我基本上是抄的题解啊,难道是RP问题???
```cpp #include using namespace std; int main(){ int l = 0; int x; int n; //表示从周x算起,经过n天 cin>>x>>n; for(int i=0;i<=n;i++){ if(x!=6&&x!=7){l+=250;} if(x==7){x=1;…
```cpp #include using namespace std; int main() { int a[12],my = 0,mother = 0; for (int i = 1; i > a[i]; my = my + 300 - a[i]; if (my < 0) { cout << "-" << i <<…
```cpp #include using namespace std; int main() { int a[12], my = 0, mother = 0; for (int i = 1; i > a[i]; } for (int h=1; h < 13; h++) { my += (300 - a[h]) % 1…