結果
問題 | No.2295 Union Path Query (Medium) |
ユーザー | 👑 potato167 |
提出日時 | 2023-05-05 22:03:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 943 ms / 4,000 ms |
コード長 | 3,791 bytes |
コンパイル時間 | 2,743 ms |
コンパイル使用メモリ | 225,288 KB |
実行使用メモリ | 157,440 KB |
最終ジャッジ日時 | 2024-05-02 16:19:39 |
合計ジャッジ時間 | 26,474 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 943 ms
157,440 KB |
testcase_04 | AC | 736 ms
131,992 KB |
testcase_05 | AC | 438 ms
89,492 KB |
testcase_06 | AC | 263 ms
60,016 KB |
testcase_07 | AC | 706 ms
131,840 KB |
testcase_08 | AC | 185 ms
43,128 KB |
testcase_09 | AC | 184 ms
43,144 KB |
testcase_10 | AC | 200 ms
43,988 KB |
testcase_11 | AC | 280 ms
49,940 KB |
testcase_12 | AC | 399 ms
57,088 KB |
testcase_13 | AC | 811 ms
73,600 KB |
testcase_14 | AC | 572 ms
73,088 KB |
testcase_15 | AC | 112 ms
38,716 KB |
testcase_16 | AC | 108 ms
38,712 KB |
testcase_17 | AC | 160 ms
42,880 KB |
testcase_18 | AC | 379 ms
80,824 KB |
testcase_19 | AC | 437 ms
83,552 KB |
testcase_20 | AC | 284 ms
58,772 KB |
testcase_21 | AC | 313 ms
63,064 KB |
testcase_22 | AC | 447 ms
83,392 KB |
testcase_23 | AC | 290 ms
52,424 KB |
testcase_24 | AC | 292 ms
52,288 KB |
testcase_25 | AC | 137 ms
39,144 KB |
testcase_26 | AC | 301 ms
53,996 KB |
testcase_27 | AC | 310 ms
55,380 KB |
testcase_28 | AC | 320 ms
56,648 KB |
testcase_29 | AC | 301 ms
56,552 KB |
testcase_30 | AC | 311 ms
56,864 KB |
testcase_31 | AC | 305 ms
57,108 KB |
testcase_32 | AC | 293 ms
57,392 KB |
testcase_33 | AC | 305 ms
58,252 KB |
testcase_34 | AC | 312 ms
57,788 KB |
testcase_35 | AC | 296 ms
57,940 KB |
testcase_36 | AC | 299 ms
58,108 KB |
testcase_37 | AC | 313 ms
59,536 KB |
testcase_38 | AC | 311 ms
58,808 KB |
testcase_39 | AC | 322 ms
59,364 KB |
testcase_40 | AC | 327 ms
58,352 KB |
testcase_41 | AC | 322 ms
58,364 KB |
testcase_42 | AC | 309 ms
58,900 KB |
testcase_43 | AC | 311 ms
58,656 KB |
testcase_44 | AC | 281 ms
50,284 KB |
testcase_45 | AC | 299 ms
52,440 KB |
testcase_46 | AC | 343 ms
62,304 KB |
testcase_47 | AC | 351 ms
64,948 KB |
testcase_48 | AC | 387 ms
69,388 KB |
testcase_49 | AC | 354 ms
64,352 KB |
testcase_50 | AC | 203 ms
46,164 KB |
testcase_51 | AC | 264 ms
52,660 KB |
testcase_52 | AC | 258 ms
50,884 KB |
testcase_53 | AC | 305 ms
57,364 KB |
testcase_54 | AC | 318 ms
59,872 KB |
testcase_55 | AC | 286 ms
56,052 KB |
ソースコード
#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])%mod)*w)%mod; wei[a]%=mod; 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]]%mod<<"\n"; } if(typ[i]==4){ X=(X+op[i][0])%N; } } }