这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
各位巨佬,可以帮我看看有啥问题吗? wa了4,7,11三个点 ```cpp #include using namespace std; const int Kmax=1e5+5; int n,s[Kmax],use[2*Kmax+10]; int main(){ fill(use,use+2*Kmax+10,0); c…
```cpp #include using namespace std; const int Kmaxb=2e6+5,Kmaxd=5e5+5; struct E{ int to,nex; }e[Kmaxb*2]; int n,m,tot=1,head[Kmaxb]; void add(int x,int y){ e[+…
```cpp #include using namespace std; const int Kmax=3e6,MAXN=75; int T,n,m,t,now; string s; struct trieN{ int is_l; int next[MAXN]; }trie[Kmax]; void fil(){ for…
在讨论《蒟蒻求改》回复:
所以为什么
在讨论《蒟蒻求改》回复:
Orz %%% 大佬NB
```cpp #include #define ll long long using namespace std; const int Kmax=1e5+5; int n,m,s[Kmax]; ll ans; struct tree{ int l,r;//区间的范围 l-r ll zhi,lazy; }tre[Kmax…
在讨论《70蒟蒻求调》回复:
orz orz 不愧是GG %%%
```cpp #include using namespace std; const int Kmax=1e5+5; int n,m,k,f[Kmax],t,ans; struct E{ int u,v,w; }s[Kmax]; bool C(E a,E b){ return a.w>b.w; } int find(i…
对了前三个点,后面全TLE ```c++ #include using namespace std; int Nmap[405][405],nx[10]={-2,-2,-1,-1,1,1,2,2},ny[10]={-1,1,-2,2,-2,2,-1,1}; struct E{ int x,y,bs; }a; int m…
在讨论《自己测没问题啊 咋全WA》回复:
背包啥? 我不会啊
在讨论《自己测没问题啊 咋全WA》回复:
```cpp #include using namespace std; struct E{ int shi; int jia; double p; }arr[105]; bool C(E a,E b){ if(a.p>b.p) return 1; else return 0; } int main(){ int t,…
在讨论《自己测没问题啊 咋全WA》回复:
啊 不是啊
```cpp #include using namespace std; struct E{ int shi; int jia; double p; }arr[105]; bool C(E a,E b){ if(a.p>b.p) return 1; else return 0; } int main(){ int t,…
//m=蓝量 s=距离 t=恒定的沉没时间 y=转化次数后的剩余不足2位数的蓝量 c=大招次数 或 大招积累长度 d=已经消耗的时间 x=已走的长度 ```cpp #include using namespace std; int main() { int m,s,t,y,c,d,x; cin>>m>>s>>t; fo…