結果
問題 | No.2295 Union Path Query (Medium) |
ユーザー | 👑 potato167 |
提出日時 | 2023-05-05 22:01:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,759 bytes |
コンパイル時間 | 2,973 ms |
コンパイル使用メモリ | 224,760 KB |
実行使用メモリ | 157,568 KB |
最終ジャッジ日時 | 2024-05-02 16:16:40 |
合計ジャッジ時間 | 34,034 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 343 ms
49,936 KB |
testcase_12 | AC | 506 ms
57,216 KB |
testcase_13 | AC | 1,218 ms
73,600 KB |
testcase_14 | AC | 740 ms
73,088 KB |
testcase_15 | AC | 126 ms
38,708 KB |
testcase_16 | WA | - |
testcase_17 | AC | 185 ms
42,880 KB |
testcase_18 | AC | 493 ms
80,824 KB |
testcase_19 | AC | 540 ms
83,576 KB |
testcase_20 | AC | 365 ms
58,768 KB |
testcase_21 | AC | 393 ms
63,104 KB |
testcase_22 | AC | 599 ms
83,524 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | AC | 451 ms
64,944 KB |
testcase_48 | AC | 495 ms
69,516 KB |
testcase_49 | AC | 445 ms
64,224 KB |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
ソースコード
#include <bits/stdc++.h> #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") using namespace std; using std::cout; using std::cin; using std::endl; using ll=long long; using ld=long double; ll ILL=2167167167167167167; const int INF=2100000000; const int mod=998244353; #define rep(i,a,b) for (int i=a;i<b;i++) #define all(p) p.begin(),p.end() template<class T> using _pq = priority_queue<T, vector<T>, greater<T>>; template<class T> ll LB(vector<T> &v,T a){return lower_bound(v.begin(),v.end(),a)-v.begin();} template<class T> ll UB(vector<T> &v,T a){return upper_bound(v.begin(),v.end(),a)-v.begin();} template<class T> bool chmin(T &a,const T &b){if(a>b){a=b;return 1;}else return 0;} template<class T> bool chmax(T &a,const T &b){if(a<b){a=b;return 1;}else return 0;} template<class T> void So(vector<T> &v) {sort(v.begin(),v.end());} template<class T> void Sore(vector<T> &v) {sort(v.begin(),v.end(),[](T x,T y){return x>y;});} void yneos(bool a){if(a) cout<<"Yes\n"; else cout<<"No\n";} template<class T> void vec_out(vector<T> &p){for(int i=0;i<(int)(p.size());i++){if(i) cout<<" ";cout<<p[i];}cout<<"\n";} template<class T> T vec_min(vector<T> &a){assert(!a.empty());T ans=a[0];for(auto &x:a) chmin(ans,x);return ans;} template<class T> T vec_max(vector<T> &a){assert(!a.empty());T ans=a[0];for(auto &x:a) chmax(ans,x);return ans;} template<class T> T vec_sum(vector<T> &a){assert(!a.empty());T ans=a[0]-a[0];for(auto &x:a) ans+=x;return ans;} int pop_count(long long a){int res=0;while(a){res+=(a&1),a>>=1;}return res;} namespace po167{ struct UFtree { using _F=ll; int _n; std::vector<_F> wei; vector<ll> cou; std::vector<int> q; vector<ll> ans; vector<set<int>> s; int component; UFtree(int n,int qu):_n(n),wei(n),cou(n),ans(qu),s(n),component(n),par(n){ for(int i=0;i<n;i++){ wei[i]=0,par[i]=i; cou[i]=1; } rep(i,0,qu) ans[i]=-1; } void rev(int a,int b,int t){ if(a==b){ ans[t]=0; return; } s[a].insert(t); s[b].insert(t); //cout<<a<<" "<<b<<" "<<s[a].size()<<" "<<s[b].size()<<endl; } void intialize(){ for(auto x:q){ wei[root(x)]=1; par[x]=x; } component=(int)par.size(); q={}; } //根っこを返す int root(int a){ assert(0<=a&&a<_n); if(a==par[a]) return a; return par[a]=root(par[a]); } //trueなら1,falseなら0 int same(int a,int b){ assert(0<=a&&a<_n); assert(0<=b&&b<_n); if(root(a)==root(b)) return 1; else return 0; } _F size(int a){ return wei[root(a)]; } //a,bが違う根っこの元なら結合する,結合したらtrueを返す bool unite(int a,int b,ll w){ a=root(a),b=root(b); if(a==b) return false; if(cou[a]<cou[b]) std::swap(a,b); par[b]=a; q.push_back(b); wei[a]+=wei[b]; wei[a]+=cou[a]*cou[b]*w; cou[a]+=cou[b]; if(s[a].size()<s[b].size()) swap(s[a],s[b]); //cout<<s[a].size()<<" "<<s[b].size()<<endl; for(auto x:s[b]){ if(!s[a].insert(x).second){ ans[x]=w; s[a].erase(x); } } component--; return true; } private: std::vector<int> par; }; } using po167::UFtree; void solve(); // oddloop int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int t=1; //cin>>t; rep(i,0,t) solve(); } void solve(){ ll N,X,Q; cin>>N>>X>>Q; UFtree T(N,Q); vector<ll> typ(Q); vector<vector<ll>> op(Q); rep(i,0,Q){ cin>>typ[i]; if(typ[i]<=2){ op[i].resize(2); } else op[i].resize(1); for(auto &x:op[i]) cin>>x; if(typ[i]==2){ T.rev(op[i][0],op[i][1],i); } } rep(i,0,Q){ //vec_out(T.ans); if(typ[i]==1){ T.unite(op[i][0],X,op[i][1]); } if(typ[i]==2){ ll v=T.ans[i]; cout<<v<<"\n"; if(v!=-1) X=(X+v)%N; } if(typ[i]==3){ op[i][0]=T.root(op[i][0]); cout<<T.wei[op[i][0]]<<"\n"; } if(typ[i]==4){ X=(X+op[i][0])%N; } } }