結果

問題 No.2296 Union Path Query (Hard)
ユーザー shkiiii_shkiiii_
提出日時 2024-04-29 09:26:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 3,746 bytes
コンパイル時間 5,801 ms
コンパイル使用メモリ 375,408 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-04-29 09:27:27
合計ジャッジ時間 34,752 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
41,472 KB
testcase_01 AC 51 ms
41,344 KB
testcase_02 AC 52 ms
41,472 KB
testcase_03 AC 52 ms
41,344 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 317 ms
50,932 KB
testcase_24 AC 290 ms
46,072 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 890 ms
52,736 KB
testcase_32 AC 871 ms
52,096 KB
testcase_33 AC 800 ms
50,560 KB
testcase_34 AC 587 ms
48,512 KB
testcase_35 AC 520 ms
48,000 KB
testcase_36 AC 447 ms
45,312 KB
testcase_37 AC 810 ms
51,584 KB
testcase_38 AC 823 ms
51,584 KB
testcase_39 AC 865 ms
51,840 KB
testcase_40 AC 803 ms
51,584 KB
testcase_41 AC 50 ms
41,472 KB
testcase_42 AC 49 ms
41,472 KB
testcase_43 AC 49 ms
41,472 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
// #include<atcoder/all>
#include<boost/multiprecision/cpp_int.hpp>

using namespace std;
// using namespace atcoder;
using bint = boost::multiprecision::cpp_int;
using ll = long long;
using ull = unsigned long long;
using P = pair<ll,ll>;
using vi = vector<ll>;
using vvi = vector<vi>;
using vvvi = vector<vvi>;
#define rep(i,n) for(ll i = 0;i < (ll)n;i++)
#define ALL(x) (x).begin(),(x).end()
#define sz(c) ((ll)(c).size())
#define LB(A,x) (int)(lower_bound(A.begin(),A.end(),x)-A.begin())
#define UB(A,x) (int)(upper_bound(A.begin(),A.end(),x)-A.begin())
// #define MOD 1000000007
#define MOD 998244353
template<typename T>using min_priority_queue=priority_queue<T,vector<T>,greater<T>>;
template<typename T>ostream&operator<<(ostream&os,vector<T>&v){for(int i = 0;i < v.size();i++)os<<v[i]<<(i+1!=v.size()?" ":"");return os;}
template<typename T>istream&operator>>(istream&is,vector<T>&v){for(T&in:v)is>>in;return is;}
template<typename T1,typename T2>ostream&operator<<(ostream&os,pair<T1,T2>&p){os<<p.first<<" "<<p.second;return os;}
template<typename T1,typename T2>istream&operator>>(istream&is,pair<T1,T2>&p){is>>p.first>>p.second;return is;}

class UnionFind{
  public:
  vector<int> par;
  UnionFind(long long size) : par(size,-1){}

  bool unite(int x,int y){
    x = root(x),y = root(y);
    if(x == y)return false;
    if(par[y] < par[x])swap(x,y);
    par[x] += par[y];
    par[y] = x;
    return true;
  }

  bool find(int x,int y){
    return root(x) == root(y);
  }

  int root(int x){
    return par[x] < 0 ? x : par[x] = root(par[x]);
  }

  int size(int x){
    return -par[root(x)];
  }
};

const int LG_N = 18;
const int MX_N = 200000;
vi d(MX_N);
vector<vector<int>> nxt(MX_N,vector<int>(LG_N));
vector<vector<pair<ll,ll>>> v(MX_N);
vector<vector<int>> cand(MX_N,vector<int>(2));
UnionFind uf(MX_N);

inline void dfs(ll &ov,ll &pre){
  nxt[ov][0] = pre;
  rep(i,LG_N-1)nxt[ov][i+1] = nxt[nxt[ov][i]][i];
  for(auto [nv,we] : v[ov]){
    if(nv == pre)continue;
    d[nv] = d[ov] + we;
    dfs(nv,ov);
  }
}
inline int LCA(int a,int b){
  if(d[a] < d[b])swap(a,b);
  for(int i = LG_N-1;i >= 0;i--)if(d[nxt[a][i]] >= d[b])a = nxt[a][i];
  if(a == b)return a;
  for(int i = LG_N-1;i >= 0;i--)if(nxt[a][i] != nxt[b][i])a = nxt[a][i],b = nxt[b][i];
  return nxt[a][0];
}
inline ll dist(int &a,int &b){
  if(!uf.find(a,b))return -1;
  return d[a] + d[b] - 2*d[LCA(a,b)];
}
inline void ch(ll &a,ll &b){
  ll mx = dist(cand[a][0],cand[a][1]);
  pair<int,int> k = {cand[a][0],cand[a][1]};
  ll l = dist(cand[b][0],cand[b][1]);
  if(l > mx){
    k = {cand[b][0],cand[b][1]};
    mx = l;
  }
  rep(i,2)rep(j,2){
    l = dist(cand[a][i],cand[b][j]);
    if(l > mx){
      mx = l;
      k = {cand[a][i],cand[b][j]};
    }
  }
  cand[b][0] = k.first;
  cand[b][1] = k.second;
}

int main(){
  
  ios_base::sync_with_stdio(0), cin.tie(0);
  ll n,X,Q;
  cin >> n >> X >> Q;
  rep(i,n)rep(j,LG_N)nxt[i][j] = i;
  rep(i,n)rep(j,2)cand[i][j] = i;
  while(Q--){
    ll t;cin >> t;
    if(t == 1){
      ll a,w;cin >> a >> w;
      ll b = X;
      if(uf.size(b) < uf.size(a))swap(b,a);
      assert(uf.size(b) >= uf.size(a));
      assert(!uf.find(a,b));
      d[a] = d[b] + w;
      dfs(a,b);
      v[a].emplace_back(b,w);
      v[b].emplace_back(a,w);
      a = uf.root(a),b = uf.root(b);
      uf.unite(b,a);
      ch(a,b);
    }else if(t == 2){
      int a,b;cin >> a >> b;
      ll res = dist(a,b);
      cout << res << "\n";
      if(res != -1)X = (X + res)%n;
    }else if(t == 3){
      int a;cin >> a;
      a = uf.root(a);
      cout << dist(cand[a][0],cand[a][1]) << "\n";
    }else{
      ll val;cin >> val;
      X = (X + val)%n;
    }
  }
  // cout << 1.0l*clock()/CLOCKS_PER_SEC << "\n";
  

  return 0;
}
0