这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include using namespace std; #define LL long long LL in() { LL x = 0, f = 1; char ch; while(!isdigit(ch = getchar()))(ch == '-')&&(f = -f); for(x = ch ^…
在讨论《Python第一个过不了》回复:
我整出来了,用洛谷ide运行就能发现错误 ``` n = int(input()) now = input()[:-1] for i in range(n): tmp = input().split() opt = int(tmp[0]) if opt == 1: now = now + tmp[1] print(no…
在讨论《有会py的大佬帮帮蒟蒻吗啊啊啊啊》回复:
woc,我知道了,输出是一行。。。。。。 就很尴尬了
在讨论《Python第一个过不了》回复:
@[Frozen_HC](/user/251237) 我也是同样的问题,一模一样过不了
在讨论《有会py的大佬帮帮蒟蒻吗啊啊啊啊》回复:
@[MicroMaker](/user/51376) 我莫不是按顺序来的?? 我WA的点都是Too Short on line 2
在讨论《有会py的大佬帮帮蒟蒻吗啊啊啊啊》回复:
@[ghj1222](/user/13091) ...
在讨论《有会py的大佬帮帮蒟蒻吗啊啊啊啊》回复:
@[一只爬行者](/user/279700) $\color{#66ccff}{Thanks}$
有会py的大佬帮帮蒟蒻吗。。。 有A有WA有T。。。 就很烦 ``` tmp = input().split() n, m, p = int(tmp[0]), int(tmp[1]), int(tmp[2]) tong = [0] * (m + 1) for i in range(n): tmp = input().s…
在讨论《萌新妹子刚学oi,不会写网络流,求大佬帮个忙》回复:
链式前向星不写指针,差评qwq
在讨论《为何全RE,求助大佬们》回复:
@[王宏宇11](/space/show?uid=123168) 不客气
在讨论《为何全RE,求助大佬们》回复:
@[王宏宇11](/space/show?uid=123168) Hack数据 ```cpp 5 5 1 2 3 4 5 ``` 你的RE 正解15
在讨论《为何全RE,求助大佬们》回复:
@[王宏宇11](/space/show?uid=123168) 额,是你sort的问题,我把你代码改了qwq ```cpp #include #include #include #include #include #include using namespace std; int a[30005]; int b[30…
在讨论《为何全RE,求助大佬们》回复:
@[王宏宇11](/space/show?uid=123168) 。。。。
在讨论《为何全RE,求助大佬们》回复:
应该是边界的问题吧 ```cpp #define _ 0 int n, m; int a[5050]; int min = 0x7fffffff; int main() { n = in(), m = in(); int s = 0; for(int i = 1; i <= n; i++) a[i] = in(); f…
在讨论《为何全RE,求助大佬们》回复:
您这。。 ```cpp j<=j+m ``` 太强了%%%
在讨论《qaq》回复:
@[c。](/space/show?uid=98516) 我去,强啊,我写的悬线法+二维前缀和QAQ
在讨论《qaq》回复:
@[c。](/space/show?uid=98516)
在讨论《qaq》回复:
你写的二维区间和?
在讨论《qaq》回复:
@[c。](/space/show?uid=98516) 巨佬啊%%%
在讨论《qaq》回复:
话说这题可以$O(n^2)$啊qwq
在讨论《qaq》回复:
快读没锅的QAQ
在讨论《qaq》回复:
```cpp #ifndef olinr inline char getc() { static char buf[100001],*p1=buf,*p2=buf; return (p1==p2)&&(p2=(p1=buf)+fread(buf,1,100001,stdin),p1==p2)? EOF:*p1++; }…
在讨论《qaq》回复:
fread TLE一个点 用cin那个点居然。。。8ms
在文章《浅谈算法——博弈论(从零开始的博弈论)》发表评论:
资瓷
在讨论《萌新求助》回复:
res要初始化为单位矩阵(对角线为1)
在讨论《萌新求助》回复:
取模 %=mod
在讨论《为什么nlogn过不去》回复:
dij写错了。。。。 if(vis[pos]) continue;
在讨论《求助“P3383 【模板】线性筛素数”问题》回复:
@[andylizf](/space/show?uid=111248) 真正的线性就是上面那个,欧拉筛QAQ