这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《第一个帮忙调通,奉上10元,拜托》回复:
@[Colubrid_L](luogu://user/942590)已私信,发个手机号,方便充话费
在讨论《第一个帮忙调通,奉上10元,拜托》回复:
```cpp #include using namespace std; int m, maxt, a[310][310]; bool vis[310][310]; int dx[]={0, 1, 0,-1}; int dy[]={1, 0,-1, 0}; bool isvalid(int x, int y, int…
在讨论《第一个帮忙调通,奉上10元,拜托》回复:
@[hyk0YF0Gamer](luogu://user/657531)@[cxh1208](luogu://user/2003274)谢谢帮助,已调整代码,虽然没有通过,但该得分已得。已关注二位,多谢!
```cpp #include using namespace std; int m, maxt, a[310][310]; bool vis[310][310]; int dx[]={0, 1, 0,-1}; int dy[]={1, 0,-1, 0}; bool isvalid(int x, int y, int…
在讨论《第一个调试通过,奉上6元,拜托》回复:
(暂无内容)
```cpp #include using namespace std; int m, maxt, a[310][310]; bool vis[310][310]; int dx[]={0, 1, 0,-1}; int dy[]={1, 0,-1, 0}; bool isvalid(int x, int y, int…
在讨论《求调,调过必关,拜托!》回复:
@[constjk7](luogu://user/678273)修改了,还是不过
```cpp #include using namespace std; int m, maxt, a[310][310]; bool vis[310][310]; int dx[]={0, 1, 0,-1}; int dy[]={1, 0,-1, 0}; bool isvalid(int x, int y, int…
在讨论《有奖调试,第一个帮忙调试成功的,奉上6元,拜托》回复:
@[Ryanwu](luogu://user/964077)知道大家这么积极回复,不是为了钱,但我要表示诚意。洛谷缺个奖励机制
在讨论《有奖调试,第一个帮忙调试成功的,奉上6元,拜托》回复:
@[Ryanwu](luogu://user/964077)@[Ryanwu](luogu://user/964077)我明白,晕了头了,已关注,请允许我私信
在讨论《有奖调试,第一个帮忙调试成功的,奉上6元,拜托》回复:
@[Ryanwu](luogu://user/964077)怎么给你转过去6元,没法给你私信
```cpp #include using namespace std; int n, a[30], dp[30], vis[30][30], nxt[30], tot=0, ans=0; int dfs(int i){ if(!dp[i]) return dp[i]; int res=0,idx=0; for(int…
```cpp #include using namespace std; int n, a[30], dp[30], vis[30][30], nxt[30], tot=0, ans=0; int dfs(int i){ if(!dp[i]) return dp[i]; int res=0,idx=0; for(int…
```cpp #include using namespace std; int n, a[30], dp[30], vis[30][30], nxt[30], tot=0, ans=0; int dfs(int i){ if(!dp[i]) return dp[i]; int res=0,idx=0; for(int…
在讨论《样例过了,提交是编译错误,请排忧解难》回复:
@[ainivolAGEM](luogu://user/551428)多谢
在讨论《样例过了,提交是编译错误,请排忧解难》回复:
@[_Cyclone_](luogu://user/1539207)多谢
```cpp #include using namespace std; int n, a[30], dp[30], vis[30][30], next[30], tot=0, ans=0; int dfs(int i){ if(!dp[i]) return dp[i]; int res=0,idx=0; for(in…
在讨论《90分,求调。最好在源代码基础上修改》回复:
多谢了,已关注
```cpp #include using namespace std; const int MAXN = 10005; const int MAXM = 105; const int MOD = 1000000007; int n, w; int a[MAXM]; long long memo[MAXM][MAXN]…
在讨论《dalao帮忙看看,第一个wa,最后一个tle了(悲)》回复:
寻找相同值时,还是一个一个找,就超时了 int obSearch(int q){ int left,right,mid; left=1; right=n; while(left =q){ right=mid; }else{ left=mid+1; } } if(a[left]==q) return left; else…