dduochrjsty
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在文章《高考电磁综合详解》发表评论:
zc
在讨论《题解区第一篇题解hack》回复:
@[__YiChaQAQ__o_O](luogu://user/1159944)原来是这样。没认真比较=-=私密马赛
在讨论《题解区第一篇题解hack》回复:
@[__YiChaQAQ__o_O](luogu://user/1159944) ^_^
在文章《ICPC 2025 胡志明市站路边记》发表评论:
一半生活电视:
在讨论《最短路相关疑惑》回复:
@[Amity_L](luogu://user/1496685)已通过,感谢!
原题链接:https://www.luogu.com.cn/problem/P1902 简单观察题意,最大值的最小值问题,可以二分+bfs轻松过掉,但是由于要求伤害值最小,很自然的想起最短路问题。 从第一行的任意一点出发求到最后一行任意一点的“最短路”,但这个最短路是路径中的费用最大值,本文称其为瓶颈最短路线。 所以建…
在讨论《最短路相关疑惑》回复:
@[Farris](luogu://user/240532)代码已修改,后五个点会超空间0.0 ```c++ #include using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair PII; con…
```c++ #include using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair PII; const int N = 1000010; const int MOD = 1e6 + 7; int…
在讨论《关于stl二分函数》回复:
@[_Corange_](luogu://user/762117) 明白了 谢谢您!!
在讨论《关于stl二分函数》回复:
@[_Corange_](luogu://user/762117) 等于换了的话既然没有意义,应该对结果也是没有影响的,为什么答案不同呢佬0.0
Code: ```c++ #include using namespace std; typedef long long ll; typedef pair PII; const int N = 100010; int a[N]; int n,ans1,ans2; int f[N],g[N]; bool cmp(int…
```c++ #include using namespace std; typedef long long ll; typedef pair PII; const int N = 200010; int fa[N]; int n,m,p,q,ans; char opt; bool vis[N]; vector en[…
```c++ #include using namespace std; typedef long long ll; typedef pair PII; const int N = 200010; struct node{ int x,y; int val; }person[N]; int a[N]; bool cmp…
在讨论《万紫千红总是春》回复:
@[lfynbklsKNYYDS888666](luogu://user/1343228) `for(int j=1;j<=n;j++)` 应该是`j <= t`
#include using namespace std; int main() { int m,n,c,d,e; int i,j; int a[100010]={0}; string b[100010]; e=0; cin>>n>>m; for(i=0;i >a[i]>>b[i]; for(i=0;i >c>>d;…
// luogu-judger-enable-o2 #include using namespace std; int main() { int i,n,a[100010]={0},b; cin>>n; b=0; for(i=0;i >a[i]; } sort(a,a+n); for(i=0;i<n;i++) { a[…