結果

問題 No.2295 Union Path Query (Medium)
ユーザー fumofumofunifumofumofuni
提出日時 2023-05-05 23:22:15
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,142 ms / 4,000 ms
コード長 3,281 bytes
コンパイル時間 2,937 ms
コンパイル使用メモリ 223,836 KB
実行使用メモリ 110,192 KB
最終ジャッジ日時 2024-11-23 12:21:45
合計ジャッジ時間 55,205 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,632 KB
testcase_01 AC 4 ms
5,504 KB
testcase_02 AC 4 ms
5,632 KB
testcase_03 AC 999 ms
59,008 KB
testcase_04 AC 955 ms
68,864 KB
testcase_05 AC 942 ms
83,752 KB
testcase_06 AC 870 ms
94,208 KB
testcase_07 AC 878 ms
57,216 KB
testcase_08 AC 684 ms
61,300 KB
testcase_09 AC 692 ms
61,312 KB
testcase_10 AC 733 ms
61,952 KB
testcase_11 AC 800 ms
66,020 KB
testcase_12 AC 848 ms
64,896 KB
testcase_13 AC 785 ms
61,420 KB
testcase_14 AC 627 ms
59,136 KB
testcase_15 AC 663 ms
110,080 KB
testcase_16 AC 657 ms
110,192 KB
testcase_17 AC 939 ms
93,440 KB
testcase_18 AC 1,093 ms
86,400 KB
testcase_19 AC 1,105 ms
86,752 KB
testcase_20 AC 987 ms
87,040 KB
testcase_21 AC 994 ms
86,912 KB
testcase_22 AC 1,063 ms
86,656 KB
testcase_23 AC 890 ms
71,040 KB
testcase_24 AC 861 ms
71,040 KB
testcase_25 AC 549 ms
62,976 KB
testcase_26 AC 872 ms
72,704 KB
testcase_27 AC 872 ms
73,472 KB
testcase_28 AC 901 ms
75,776 KB
testcase_29 AC 894 ms
74,112 KB
testcase_30 AC 875 ms
74,368 KB
testcase_31 AC 886 ms
74,624 KB
testcase_32 AC 896 ms
74,752 KB
testcase_33 AC 886 ms
75,776 KB
testcase_34 AC 889 ms
74,880 KB
testcase_35 AC 860 ms
75,008 KB
testcase_36 AC 880 ms
75,008 KB
testcase_37 AC 877 ms
77,056 KB
testcase_38 AC 890 ms
75,904 KB
testcase_39 AC 885 ms
76,800 KB
testcase_40 AC 875 ms
75,136 KB
testcase_41 AC 882 ms
75,904 KB
testcase_42 AC 879 ms
76,160 KB
testcase_43 AC 882 ms
76,160 KB
testcase_44 AC 822 ms
66,304 KB
testcase_45 AC 878 ms
71,040 KB
testcase_46 AC 990 ms
79,872 KB
testcase_47 AC 996 ms
82,688 KB
testcase_48 AC 1,132 ms
93,568 KB
testcase_49 AC 1,142 ms
93,440 KB
testcase_50 AC 767 ms
72,704 KB
testcase_51 AC 829 ms
75,648 KB
testcase_52 AC 842 ms
72,832 KB
testcase_53 AC 878 ms
75,264 KB
testcase_54 AC 881 ms
77,568 KB
testcase_55 AC 852 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
//#pragma GCC optimize("Ofast")
#define rep(i,n) for(ll i=0;i<n;i++)
#define repl(i,l,r) for(ll i=(l);i<(r);i++)
#define per(i,n) for(ll i=(n)-1;i>=0;i--)
#define perl(i,r,l) for(ll i=r-1;i>=l;i--)
#define fi first
#define se second
#define pb push_back
#define ins insert
#define pqueue(x) priority_queue<x,vector<x>,greater<x>>
#define all(x) (x).begin(),(x).end()
#define CST(x) cout<<fixed<<setprecision(x)
#define rev(x) reverse(x);
using ll=long long;
using vl=vector<ll>;
using vvl=vector<vector<ll>>;
using pl=pair<ll,ll>;
using vpl=vector<pl>;
using vvpl=vector<vpl>;
const ll MOD=1000000007;
const ll MOD9=998244353;
const int inf=1e9+10;
const ll INF=4e18;
const ll dy[8]={1,0,-1,0,1,1,-1,-1};
const ll dx[8]={0,1,0,-1,1,-1,1,-1};
template <typename T> inline bool chmax(T &a, T b) {
  return ((a < b) ? (a = b, true) : (false));
}
template <typename T> inline bool chmin(T &a, T b) {
  return ((a > b) ? (a = b, true) : (false));
}
vl ans(300010,-1);
vector<vpl> meet;
struct UnionFind {
    vector<int> par;
    vector<int> edge;
    vector<ll> fs;
    vector<set<ll>> com;
    
    UnionFind(int n) : par(n, -1),edge(n, 0) {
      fs.resize(n);com.resize(n);
      rep(i,n)com[i].insert(i);
    }

    int root(int x) {
        if (par[x] < 0) return x;
        else return par[x] = root(par[x]);
    }
    
    bool same(int x, int y) {
        return root(x) == root(y);
    }
    
    bool merge(int x, int y,ll w) {
        x = root(x); y = root(y);
        if (x == y) {
            edge[x]++;
            return false;
        }
        if (par[x] > par[y]) {
          swap(x, y);
        }
        ll p=size(x),q=size(y);
        par[x] += par[y];
        par[y] = x;
        edge[x] += edge[y]+1;
        p*=q;p%=MOD9;p*=w;
        fs[x]=(fs[x]+fs[y])%MOD9;
        fs[x]=(fs[x]+p)%MOD9;
        if(com[x].size()<com[y].size())swap(com[x],com[y]);
        for(auto p:com[y]){
          for(auto q:meet[p]){
            if(com[x].count(q.first)){
              ans[q.second]=w;
            }
          }
        }
        for(auto p:com[y])com[x].insert(p);
        return true;
    }
    
    int size(int x) {
        return -par[root(x)];
    }

  ll query(int x) {
    x=root(x);
    return fs[x];
  }
};
int main(){
  ll n,x,q;cin >> n >> x >> q;meet.resize(n);
  UnionFind uf(n);
  vvl qs(q);
  ll idx=0;
  //return 0;
  rep(i,q){
    ll t;cin >> t;qs[i].emplace_back(t);
    if(t==1){
      ll v,w;cin >> v >> w;qs[i].emplace_back(v);qs[i].emplace_back(w);
    }
    else if(t==2){
      ll u,v;cin >> u >> v;
      meet[u].push_back({v,idx});
      meet[v].push_back({u,idx});
      if(u==v)ans[idx]=0;
      qs[i].emplace_back(idx);idx++;
    }
    else if(t==3){
      ll v;cin >> v;qs[i].emplace_back(v);
    }
    else{
      ll v;cin >> v;qs[i].emplace_back(v);
    }
  }
  //return 0;
  rep(i,q){
    ll t=qs[i][0];
    if(t==1){
      uf.merge(qs[i][1],x,qs[i][2]);
    }
    else if(t==2){
      ll f=ans[qs[i][1]];
      cout << f << endl;
      if(f!=-1)x+=f;x%=n;
    }
    else if(t==3){
      cout << uf.query(qs[i][1]) << endl;
    }
    else{
      ll v=qs[i][1];x+=v;x%=n;
    }
    /*rep(i,n){
      for(auto p:uf.sts[i])cout << p.first <<" " << p.second <<" ";cout << endl;
    }*/
  }
} 
0