Always Keep ドラゴンコア
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include using namespace std; int n,q; int sz[500005]; int ltag[500005]; int rtag[500005]; int dep[500005]; int dp[500005][31]; vector >mp; void dfs(int…
```cpp #include using namespace std; int n,m; int root; vector mp[20005]; int dfn[20005]; int low[20005]; int cnt; int ans[20005]; int cntt; void tarjan(int x)…
```cpp #include using namespace std; typedef long long ll; int n,m; int MOD=1e9+7; vector mp[500005]; int cnt; int dfn[500005]; int low[500005]; int vis[500005]…
```cpp #include using namespace std; #define int long long int n; struct node { int x; int y; }a[500005]; bool cmp(node a,node b) { return a.x b.y); } signed ma…
```cpp #include using namespace std; #define int long long int n,m,t; vector e[10005]; vector ee[10005]; int dfn[10005],low[10005]; int bcj[10005]; int rt[10005…
在文章《题解:P1844 阅览室》发表评论:
=)
在讨论《错误求调qwq》回复:
@[chaojidashuaitong](luogu://user/1055148)qwq
在讨论《错误求调qwq》回复:
@[akaryan](luogu://user/1283989)能指出我错哪了吗 AC代码不吃qwq 不知道思路
在讨论《错误求调qwq》回复:
@[chaojidashuaitong](luogu://user/1055148)好像发错地方了... 我本来好像写的是蓝题来着qwq
```cpp #include using namespace std; int n; const int INF=1e9+7; struct node { double x; double y; }a[100005]; node tmp[100005]; double dis(node a,node b) { ret…
```cpp #include using namespace std; int n,k,a[25],num; int vis[25]; int sum[100]; bool flag; int ans=0; int dfs(int x) { if(x>=k) { return 0; } for(int i=0;i >…