yuhaoran666
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《求 2024 年河北 CSP-S 代码压缩包密码》回复:
@[K8He](luogu://user/306045) OK,谢谢!
在讨论《求 2024 年河北 CSP-S 代码压缩包密码》回复:
@[K8He](luogu://user/306045) 能帮我下一下吗?我这里打不开
在讨论《求 CSP-S 2024 河北省代码压缩包密码》回复:
@[20_200](luogu://user/627321) [河北省代码链接,但已经失效](https://pan.baidu.com/s/1g4mWjMHn9IymXZIm1x2yCw)
在讨论《求 CSP-S 2024 河北省代码压缩包密码》回复:
@[20_200](luogu://user/627321) CCF 那个附件文档里的那个
在讨论《桶排序如何优化以减少内存占用》回复:
@[FiveFourierTransform](/user/912248) 可我做的这个题要记录其他信息的,单纯一维数组不行
在讨论《桶排序如何优化以减少内存占用》回复:
谢谢各位,我用的是 map + set。
在讨论《桶排序如何优化以减少内存占用》回复:
@[Gohldg](/user/757214) 不行,你这不算优化,而且我这题还要记录其他信息
在讨论《关于虚拟机(VMware)的提问》回复:
@[James_kttt](/user/637526) 不会影响。~~因为我都跑过几十回 MBR 病毒了~~
# CPlusPlus ```cpp #include using namespace std; #define ll long long #define N 1010 ll ans[N], a, b, cnt, tmp[N] = {1}; bool f; ll gcd(int a, int b) { return (…
在讨论《dfs bfs ALL 70 求助》回复:
我终于 **$\color{green}{AC}$** 了!
在讨论《请求修改题面》回复:
@[HeavenGalaxy](/user/668599) 我的意思是,你第二句话落了个 `!`
在讨论《请求修改题面》回复:
@[HeavenGalaxy](/user/668599) 他那不是感叹句,而是7或13的阶乘。
在讨论《dfs bfs ALL 70 求助》回复:
@[dlydly](/user/124786) @[gongziwen](/user/418739) 说具体点,别故作深沉。 如果你也不会,请撤回你的回复。
`DFS` 和 `BFS` 都试过了,都是70,7 `AC` 3 TLE 。 DFS ```cpp #include using namespace std; #define N 1010 bool mp[N][N], vis[N][N]; int ans, n, m, xx, yy; int dx[4] = {-1,…
困扰了我20天的题,谁来帮一下我? ```cpp #include using namespace std; #define N 1010 bool mp[N][N], vis[N][N]; int ans, n, m, xx, yy; int dx[4] = {-1, 0, 0, 1}; int dy[4] = {0…
在讨论《60求助》回复:
@[AAAaaa23333](/user/578628) 把后面的数压进来
在讨论《60求助》回复:
6AC,4TLE
语言: [C++](cplusplus.com) ```cpp #include using namespace std; stack a; int n, tmp, b[10000010]; int main() { cin >> n; for (int i = 0; i > b[i]; for (int i = 0;…
在讨论《过样例,20, 1AC4WA,求助》回复:
@[Hacker_King](/user/402102) 已 $\color{green}{AC}$ ,谢谢
```cpp #include using namespace std; #define N 1000010 stack tmp; int in[N], out[N], t, n, cnt; int main() { cin >> t; for (int x = 1; x > n; cnt = 0; for (int…
在讨论《DFS 7AC 3TLE 求助》回复:
@[单南松](/user/524911) 我的那个go数组就是判断这个路是否可行,这样就不用在函数里判断了,可是优化后反而更慢了 ~~.............................................................................................…
在讨论《DFS 7AC 3TLE 求助》回复:
@[单南松](/user/524911) 主函数里判断了,go数组
优化前7AC 3TLE 3.65s / 24.66MB ```cpp #include using namespace std; #define N 1010 bool mp[N][N], vis[N][N]; int xx, yy; int ans, n, m; int dx[4] = {-1, 0, 0, 1};…
在讨论《DFS 样例通过,7WA3TLE求助!》回复:
@[metaphysis](/user/333388) 谢谢!
DFS 样例通过,7WA3TLE求助! ```cpp #include using namespace std; #define N 1010 bool mp[N][N], vis[N][N], xx, yy; int ans, n, m; int dx[4] = {-1, 0, 0, 1}; int dy[4] =…
在讨论《50求助》回复:
高精是模拟出来的,永远不如`int` `longlong`快。