B站/抖音关注遐蝶rz谢谢喵
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《50pts求条闭关》回复:
@[wjy7777](luogu://user/1328264)彳亍
在讨论《50pts求条闭关》回复:
不懂就问为啥要加回溯啊原理是什么@[wjy7777](luogu://user/1328264)
```cpp #include using namespace std; int n, m, t; // vector > a(5,vector (5,0)); typedef pair pii; int sx, sy, fx, fy; bool mp[10][10]; bool check(int x, int y)…
在讨论《关于GESP》回复:
@[yiziheng](luogu://user/1697724) [链接](https://gesp.ccf.org.cn/101/attach/1720331391729696.pdf)
在讨论《洛谷 2025 年鉴》回复:
qp
我只有30pts https://www.luogu.com.cn/record/list?pid=P11960&user=1399778 --- **代码**(有注释的) ```cpp #include using namespace std; int n; vector b; int ans = 0; int ma…
先看代码 --- ```cpp #include using namespace std; long long n,m; map > a; int main() { ios::sync_with_stdio(false); cin.tie(0); cin>>n>>m; for(int i=0;i >p>>c; a[p]…
在讨论《点2wa了求条(必关)》回复:
统一回复:已关
在讨论《点2wa了求条(必关)》回复:
@[OvO_CYX](luogu://user/778977)为啥要初始化成0xcf啊
dp ```cpp #include using namespace std; vector a(1000005,0); int n; long long ans=0; long long dp[1000005]; void dpp() { dp[1]=a[1]; for(int i=2;i >n; for(int i…
在讨论《52分求条,悬关》回复:
**新记录** https://www.luogu.com.cn/record/249275668 修改后: ```cpp #include using namespace std; int n,a,b; vector k(200+78); struct node { int pos; int step; }; vec…
```cpp #include using namespace std; int n,a,b; vector k(200+78); struct node { int pos; int step; }; vector visited(200+78,0); void bfs() { a--; b--; queue q;…
在讨论《样例全过提交全wa求条》回复:
已条好
```cpp #include using namespace std; string hb[505]; int n, m; int ans = 0; bool check(int x,int y) { return x>=0 && x =0 && y > n >> m; for(int i = 0; i > hb[i…
```cpp #include using namespace std; int a[1010][1010]; int tmp_a[1010][1010]; int n, m; void input() { cin >> n >> m; for (int i = 1; i > c; if (c == '.') { a[…
在讨论《GESP3》回复:
@[fushangyang](luogu://user/1545364)可能是你运气好(
在讨论《GESP3》回复:
@[fushangyang](luogu://user/1545364)3级,有些markdown崩了,操作题水
在讨论《帮帮我啊!》回复:
@[wudi12](/user/1399778) 这是整行输入
在讨论《帮帮我啊!》回复:
**#include ** getline(cin,x)//x为所输入的数
题目链接:https://www.luogu.com.cn/problem/P11228?contestId=209924 --------------------------------------------- 代码: ```cpp #include using namespace std; int d = 0;…