新人awa || 互关: color!=brown && color>green ⎛⎝≥⏝⏝≤⎛⎝
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《76pts 求调》回复:
@[Na1L0n9](luogu://user/1045932) 谢谢大佬! ⎛⎝≥⏝⏝≤⎛⎝
在讨论《95分求调》回复:
?? 在我这100分a
在讨论《0pts求条不玄关,马蜂不优良》回复:
hyw
``` #include using namespace std; const int N=1e4+10; int n,m,T,num,ans; int a[N],b[N],dfn[N],low[N],co[N],siz[N]; bool vis[N]; vector g[N]; stack s; inline int…
在讨论《0分,求救》回复:
@[Tuziyao20150618](luogu://user/1840014) ``` #include #include #include using namespace std; int lx,b; bool a[10]; string str; int main(){ cin>>b; for(int i=1;i…
在讨论《0分,求救》回复:
@[zjc1234](luogu://user/1352164) 666 啥错也不说就传个代码
在讨论《0分,样例过,测试全WA》回复:
@[xexy](luogu://user/1848781) string 类型的变量 for 循环从 0 开始
``` #include using namespace std; #define t(floor,x) floor*n+x const int N=1e5+10; int n,m,x,y,z,ans; int a[N],dp[N*3]; //dp[i]=j 表示走到 i 的最长路径为 j bool vis[N*3];…
WA on #2 #9 #10 #11 #12 #13 #16 #17 #18 #19 #20 #21 ```c++ #include using namespace std; const int N=1e4+10; const int M=5e4+10; struct way{ int a,b; }w[M]; int…
在讨论《20分》回复:
@[asiburi](luogu://user/2065343) t==0的情况 s/t需要向下取整
在讨论《关于RE》回复:
@[mjc_](luogu://user/1354731) 我试过1也错
在讨论《关于RE》回复:
@[20240220ZHM](luogu://user/1267566) 还是这里报错
在讨论《关于RE》回复:
@[20240220ZHM](luogu://user/1267566) 在我这dev/c++上报错len=max(len,st[n].size()*1ll);
在讨论《关于long long》回复:
hyw
在讨论《求条,是由乃救爷爷,我们没救了!(样例不过,笛卡尔树优良码风)》回复:
@[cqbzzlr](luogu://user/1238483) 可以看出其题目作者真的非常喜欢坦克
在讨论《50分求条 必关!!!》回复:
@[__YiChaQAQ__o_O](luogu://user/1159944)赞同
在讨论《80求改》回复:
@[_hei_qia](luogu://user/2004625) $i<N-2$何意味????
在讨论《60求调,萌新一枚》回复:
@[only46](luogu://user/1426889) 着我就不知道了qwq
在讨论《60求调,萌新一枚》回复:
@[only46](luogu://user/1426889) 而且关闭同步流不能和scanf一起用 ~~小萌新可爱捏awa~~
在讨论《60求调,萌新一枚》回复:
@[only46](luogu://user/1426889) e ``` 你的scanf中要有2个&lld e.g. scanf("%lld%lld",&n,&k) 因为你要输入2个变量 ```
在讨论《double 能存储的最大值是多少?》回复:
你可以假设最大x位然后开1个double a与string str记录 ``` for(i;1->x;++) { a=i%10 string+=char(i%10) } for(i;1->x;++) { 1位1位 将a的小数位与str对比 } ``` ~~我也不知道行不行就是提1个想法awa~~
在讨论《求题》回复:
@[Wayming](luogu://user/1816887) P2511 P1182 P3503
在讨论《帮忙找下哪错了?》回复:
@[zhaopeilin](luogu://user/1938365) 输入有错p和h的值不对这里建议用cin ```cpp #include using namespace std; int main() { double w,h,b; cin>>w>>h; b=w/(h*h); // cout 25.0) prin…
在讨论《60求调,萌新一枚》回复:
@[only46](luogu://user/1426889) 然后你会发现TLE (超时) ~~qwq~~ 因为输入达到1000000以上需要快读快写( 快速读入快速输出 )~~em你应该是不会快读快写的~~ 可以用 ```c++ scanf("%lld",&n,&k); scanf("%lld",&a[i]); `…
在讨论《60求调,萌新一枚》回复:
@[only46](luogu://user/1426889) 1≤n$<$5000000 而你的n只有1000000+5
```cpp #include using namespace std; const int N=20; struct food{ int s,b; }; int n,ans=1e9; food a[N]; bool vis[N]; void dfs(int k) { if(k>n) { int sum_s=1,sum…