摘要: 代码:(输入函数很香建议保留)我不理解他是绿的但 The Blocks Problem 是黄的 #include<bits/stdc++.h> using namespace std; int in[100010],post[100010],l[100010],r[100010]; int n,be 阅读全文
posted @ 2022-02-07 23:26 fervency 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 麻麻我更委屈了!!! 天平(即风铃)AC代码:两个答案之间空行隔开也就罢了,为嘛最后一行还不能多空行?! #include<cstdio> using namespace std; bool solve(int &w){ int w1,d1,w2,d2; bool b1=1,b2=1; scanf( 阅读全文
posted @ 2022-02-07 21:32 fervency 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 🙂UVA是什么牛马 注册了无数次后终于成功,与洛谷绑定1:54~2:40 绑定后登不上去+洛谷日爆3:00~4:30 瑞瑞的木板就是合并果子,就是我靠sort水过二叉堆的那个 暴力代码: #include<bits/stdc++.h> using namespace std; int main() 阅读全文
posted @ 2022-02-07 20:32 fervency 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 点击查看代码 for(int i=1;i<=n;i++) { for(int j=i;j<=min(i*2,n);j++) } for(int i=1;i<=n;i++) { for(int j=1;j<=n;j+=i) } for(int i=1;i<=n;i++) { for(int j=1;j 阅读全文
posted @ 2022-02-07 16:27 fervency 阅读(29) 评论(0) 推荐(0) 编辑
摘要: emmmm ybt 字符串处理 例2题解错了 AC自动机板子错了(据说) 另外字符串处理的题解写的我一脸懵逼 网站上eeeee 点击查看E. 1.排队接水 #include <iostream> #include <cstdio> #include <algorithm> using namespa 阅读全文
posted @ 2022-02-06 16:26 fervency 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 原来错一道题可能不止错在少剪枝,还可能这压根就不是搜索题 题目传送门 第一反应:这不每个点左搜一遍右搜一遍然后比大小吗 点击查看search #include<iostream> #include<cstdio> #include<cmath> #include<algorithm> using n 阅读全文
posted @ 2022-02-01 16:18 fervency 阅读(24) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2022.cnblogs.com/blog/2555151/202202/2555151-20220201121218682-835411595.png) 阅读全文
posted @ 2022-02-01 12:13 fervency 阅读(9) 评论(0) 推荐(0) 编辑
摘要: T1同昨(我看到题目就粘上昨天的代码,结果题还没发我就A了hhhhhh) T2一开始想用深搜,结果T掉了。。。只好改广搜,就挺令人头大 点击查看宽广对比 #include<bits/stdc++.h> using namespace std; int sum,n; int a[50][50]; bo 阅读全文
posted @ 2022-01-28 09:33 fervency 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 并查集有顺序??? 今天水T4的时候一开始正常读入,到手40pts,然后怎么调都不行。。。然后手滑输错样例6 3 1 2 3 1 4 5,结果就对了 再然后我就意识到了一些问题。加上一句swap(u[i],v[i]); 就过了。。。 点击查看代码 #include<iostream> #includ 阅读全文
posted @ 2022-01-27 23:21 fervency 阅读(27) 评论(0) 推荐(0) 编辑
摘要: cell:类似迷宫 比较怪的地方在于 循环放在主程序里(确实是bfs太长了导致) 跟深搜有什么区别呢? 点击查看代码 #include<iostream> #include<cstdio> #include<cmath> #include<algorithm> #include<cstring> # 阅读全文
posted @ 2022-01-27 23:14 fervency 阅读(17) 评论(0) 推荐(0) 编辑