这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
``` #include using namespace std; typedef long long ll; ll n,a[1000000],mine=100000000000000000,maxe=-100000000000000000; int main() { cin>>n; for(int i=1;i >a[…
在文章《CSPS》发表评论:
直接用死亡笔记送走
在讨论《有没有大佬解答一下这段代码为什么RE了呢?》回复:
@[__F__](luogu://user/1360452)谢谢!
```cpp #include using namespace std; struct node{ int data; node *next; node() { next = nullptr; } }; node l[305]; int main() { int n, m; cin >> n >> m; for(int…