結果

問題 No.2295 Union Path Query (Medium)
ユーザー fumofumofunifumofumofuni
提出日時 2023-05-05 23:22:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 983 ms / 4,000 ms
コード長 3,281 bytes
コンパイル時間 2,589 ms
コンパイル使用メモリ 223,708 KB
実行使用メモリ 110,080 KB
最終ジャッジ日時 2024-05-02 18:37:51
合計ジャッジ時間 50,074 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,632 KB
testcase_01 AC 3 ms
5,504 KB
testcase_02 AC 4 ms
5,504 KB
testcase_03 AC 895 ms
59,008 KB
testcase_04 AC 867 ms
68,992 KB
testcase_05 AC 834 ms
83,712 KB
testcase_06 AC 792 ms
94,208 KB
testcase_07 AC 732 ms
57,216 KB
testcase_08 AC 579 ms
61,440 KB
testcase_09 AC 603 ms
61,440 KB
testcase_10 AC 626 ms
61,952 KB
testcase_11 AC 682 ms
66,048 KB
testcase_12 AC 734 ms
65,024 KB
testcase_13 AC 705 ms
61,568 KB
testcase_14 AC 595 ms
59,136 KB
testcase_15 AC 614 ms
110,080 KB
testcase_16 AC 608 ms
110,080 KB
testcase_17 AC 858 ms
93,440 KB
testcase_18 AC 969 ms
86,528 KB
testcase_19 AC 983 ms
86,656 KB
testcase_20 AC 889 ms
87,168 KB
testcase_21 AC 898 ms
87,040 KB
testcase_22 AC 946 ms
86,656 KB
testcase_23 AC 767 ms
71,040 KB
testcase_24 AC 729 ms
71,040 KB
testcase_25 AC 465 ms
62,976 KB
testcase_26 AC 774 ms
72,704 KB
testcase_27 AC 820 ms
73,344 KB
testcase_28 AC 835 ms
75,776 KB
testcase_29 AC 788 ms
74,240 KB
testcase_30 AC 779 ms
74,368 KB
testcase_31 AC 751 ms
74,624 KB
testcase_32 AC 822 ms
74,880 KB
testcase_33 AC 825 ms
75,776 KB
testcase_34 AC 740 ms
74,880 KB
testcase_35 AC 850 ms
75,008 KB
testcase_36 AC 856 ms
75,136 KB
testcase_37 AC 885 ms
77,056 KB
testcase_38 AC 864 ms
75,776 KB
testcase_39 AC 762 ms
77,056 KB
testcase_40 AC 779 ms
75,136 KB
testcase_41 AC 777 ms
75,904 KB
testcase_42 AC 762 ms
76,288 KB
testcase_43 AC 777 ms
76,160 KB
testcase_44 AC 706 ms
66,432 KB
testcase_45 AC 782 ms
71,168 KB
testcase_46 AC 846 ms
79,872 KB
testcase_47 AC 859 ms
82,688 KB
testcase_48 AC 951 ms
93,568 KB
testcase_49 AC 963 ms
93,568 KB
testcase_50 AC 654 ms
72,832 KB
testcase_51 AC 729 ms
75,648 KB
testcase_52 AC 753 ms
72,832 KB
testcase_53 AC 765 ms
75,264 KB
testcase_54 AC 780 ms
77,696 KB
testcase_55 AC 725 ms
76,288 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