这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在文章《沙发问题的更优解!》发表评论:
orz
在文章《沙发问题的更优解!》发表评论:
天才!
在讨论《91分求调》回复:
@[WritingLetter](luogu://user/851495) 谢谢,已解决
```cpp #include #include #include #include using namespace std; #define int long long const int N = 1e5 + 10; struct edge { int to, data; }; struct node { int n…
在文章《smart-oj》发表评论:
@lijingshu_304775 OK呀,等我写完leetcode就写codeforces的
## 7.16 ~ 7.17 : 复习线段树的基础知识和内容 **线段树模板(加法和乘法):** ```cpp #include using namespace std; #define int long long const int N = 1e6 + 10; int n, q, m, w, x, y, k, arr…
在文章《smart-oj》发表评论:
@Nuclear_Fish_cyq emm...我这是stylus样式,不是油猴脚本
在文章《smart-oj》发表评论:
@Nuclear_Fish_cyq emm...我后期试试吧
被数据 ``` 5 5 4 1 2 1 3 2 4 3 4 4 5 ``` hack了 代码: ```cpp #include using namespace std; const int N = 5e3 + 10; int n,k,m,p,q,a[N][N],b[N],minn,ans = 1; bool pos[N…
在文章《在 Windows 下编写多人游戏》发表评论:
[Error] 'thread' was not declared in this scope
在文章《smart-oj》发表评论:
这个版本的代码写得有点乱,不易于阅读和个性化修改,所以我打算在暑假做一个重置版
### smart-oj **[修改内容及更新日志(该版本已停止更新和维护,不更新了)](https://www.luogu.me/paste/6qjjaydb)** **修改版** by [hhy8399(luogu uid 1179906)](https://www.luogu.com.cn/user/117990…
在讨论《防jc教程》回复:
@[Lu_Yu_hao](luogu://user/1062661) 你其实可以jc回去的
在讨论《防jc教程》回复:
@[Lu_Yu_hao](luogu://user/1062661) 浏览器提示保留密码点从不
在讨论《防jc教程》回复:
@[Lu_Yu_hao](luogu://user/1062661) 有还原那么随手关电脑养成习惯,没有还原给电脑设个密码,随手win+L用完删掉密码
在讨论《防jc教程》回复:
@[Lu_Yu_hao](luogu://user/1062661) 你们机房没有还原吗
在讨论《捞(有回复但问题为解决》回复:
玄关
在讨论《10pts求调(玄关》回复:
``` n,m 含义rt cnt 为所有顺序的个数 pos 为给出的手指顺序在所有顺序排完序后的位置 w 为最好要输出的数,但输出时要加空格,所以继续处理 j 为一个计数器,用于将数倒序存入数组 a 数组为读入的顺序 b 数组为打表数组 c 数组为最终要输出的内容 ```
在讨论《求优化》回复:
@[Ziy119](luogu://user/1183997) 给个注释,看不太懂
在讨论《10pts求调(玄关》回复:
《万紫千红》
```cpp #include using namespace std; const int MAXN = 1e6 + 10; int n,m,cnt,k,pos,j,a[MAXN],b[MAXN],c[MAXN]; map mp; int main() { //读入 cin >> n >> m; for(int i…
在讨论《60pts求助》回复:
@[Yowjen](luogu://user/1240853) 谢谢dalao(已关
在讨论《这里能举报吗?》回复:
@[JTR1234](luogu://user/1416813)就是那三个点
在讨论《这里能举报吗?》回复:
@[JTR1234](luogu://user/1416813) 点进他主页关注键旁边有个举报按钮,按那个举报昵称,我已经帮你举报了
在讨论《样例过了但WA》回复:
@[tuoran](luogu://user/1284590) ```cpp #include using namespace std; int sum; int main(){ int n,s,t,w; cin >> n >> s >> t >> w; int a[n]; for(int i = 0;i > a[i]…
在讨论《这里能举报吗?》回复:
@[JTR1234](luogu://user/1416813)可以直接举报
问:是否是日期计算的问题?(玄关) ```cpp #include using namespace std; #define int long long const int MAXN = 1e6 + 10; int n,y,m,d,h,mi,y_1,m1,d1,h1,mi1,tim,ans,k = 1,a[MAXN];…
### sscanf ```cpp #include string s = "1145 14"; char a[20]; sscanf(s,"%*d %s",a); //向a中读入"14"(跳过1145) ``` ### sprintf ```cpp #include int a = 100; char b = 'a'…