結果

問題 No.2311 [Cherry 5th Tune] Cherry Month
ユーザー ei1333333ei1333333
提出日時 2023-05-19 22:25:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 439 ms / 4,600 ms
コード長 4,952 bytes
コンパイル時間 3,819 ms
コンパイル使用メモリ 220,196 KB
実行使用メモリ 55,756 KB
最終ジャッジ日時 2023-08-23 00:20:37
合計ジャッジ時間 22,616 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 305 ms
41,280 KB
testcase_03 AC 124 ms
17,600 KB
testcase_04 AC 132 ms
15,516 KB
testcase_05 AC 130 ms
14,672 KB
testcase_06 AC 162 ms
18,928 KB
testcase_07 AC 131 ms
14,328 KB
testcase_08 AC 265 ms
38,620 KB
testcase_09 AC 210 ms
28,208 KB
testcase_10 AC 176 ms
26,284 KB
testcase_11 AC 212 ms
31,652 KB
testcase_12 AC 261 ms
31,328 KB
testcase_13 AC 270 ms
31,144 KB
testcase_14 AC 239 ms
37,332 KB
testcase_15 AC 282 ms
37,552 KB
testcase_16 AC 130 ms
20,168 KB
testcase_17 AC 287 ms
37,768 KB
testcase_18 AC 233 ms
34,504 KB
testcase_19 AC 265 ms
37,468 KB
testcase_20 AC 265 ms
30,880 KB
testcase_21 AC 236 ms
22,572 KB
testcase_22 AC 229 ms
24,340 KB
testcase_23 AC 247 ms
35,476 KB
testcase_24 AC 256 ms
32,800 KB
testcase_25 AC 213 ms
35,516 KB
testcase_26 AC 314 ms
38,820 KB
testcase_27 AC 267 ms
44,916 KB
testcase_28 AC 265 ms
44,616 KB
testcase_29 AC 313 ms
45,204 KB
testcase_30 AC 313 ms
20,852 KB
testcase_31 AC 309 ms
20,840 KB
testcase_32 AC 348 ms
21,148 KB
testcase_33 AC 270 ms
46,912 KB
testcase_34 AC 248 ms
45,556 KB
testcase_35 AC 282 ms
46,908 KB
testcase_36 AC 355 ms
47,744 KB
testcase_37 AC 385 ms
49,140 KB
testcase_38 AC 389 ms
49,332 KB
testcase_39 AC 351 ms
47,392 KB
testcase_40 AC 351 ms
47,116 KB
testcase_41 AC 363 ms
47,176 KB
testcase_42 AC 373 ms
48,112 KB
testcase_43 AC 358 ms
47,080 KB
testcase_44 AC 329 ms
48,940 KB
testcase_45 AC 317 ms
48,416 KB
testcase_46 AC 259 ms
42,220 KB
testcase_47 AC 439 ms
48,816 KB
testcase_48 AC 256 ms
46,932 KB
testcase_49 AC 401 ms
55,756 KB
testcase_50 AC 262 ms
46,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 1 "template/template.hpp"
#include<bits/stdc++.h>

using namespace std;

using int64 = long long;
const int mod = 1e9 + 7;

const int64 infll = (1LL << 62) - 1;
const int inf = (1 << 30) - 1;

struct IoSetup {
  IoSetup() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(10);
    cerr << fixed << setprecision(10);
  }
} iosetup;

template< typename T1, typename T2 >
ostream &operator<<(ostream &os, const 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;
}

template< typename T >
ostream &operator<<(ostream &os, const vector< T > &v) {
  for(int i = 0; i < (int) 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 >
inline bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); }

template< typename T1, typename T2 >
inline bool chmin(T1 &a, T2 b) { return a > b && (a = b, true); }

template< typename T = int64 >
vector< T > make_v(size_t a) {
  return vector< T >(a);
}

template< typename T, typename... Ts >
auto make_v(size_t a, Ts... ts) {
  return vector< decltype(make_v< T >(ts...)) >(a, make_v< T >(ts...));
}

template< typename T, typename V >
typename enable_if< is_class< T >::value == 0 >::type fill_v(T &t, const V &v) {
  t = v;
}

template< typename T, typename V >
typename enable_if< is_class< T >::value != 0 >::type fill_v(T &t, const V &v) {
  for(auto &e : t) fill_v(e, v);
}

template< typename F >
struct FixPoint : F {
  explicit FixPoint(F &&f) : F(forward< F >(f)) {}

  template< typename... Args >
  decltype(auto) operator()(Args &&... args) const {
    return F::operator()(*this, forward< Args >(args)...);
  }
};

template< typename F >
inline decltype(auto) MFP(F &&f) {
  return FixPoint< F >{forward< F >(f)};
}

#line 2 "structure/union-find/union-find.hpp"

struct UnionFind {
  vector< int > data;

  UnionFind() = default;

  explicit UnionFind(size_t sz) : data(sz, -1) {}

  bool unite(int x, int y) {
    x = find(x), y = find(y);
    if(x == y) return false;
    if(data[x] > data[y]) swap(x, y);
    data[x] += data[y];
    data[y] = x;
    return true;
  }

  int find(int k) {
    if(data[k] < 0) return (k);
    return data[k] = find(data[k]);
  }

  int size(int k) {
    return -data[find(k)];
  }

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

  vector< vector< int > > groups() {
    int n = (int) data.size();
    vector< vector< int > > ret(n);
    for(int i = 0; i < n; i++) {
      ret[find(i)].emplace_back(i);
    }
    ret.erase(remove_if(begin(ret), end(ret), [&](const vector< int > &v) {
      return v.empty();
    }), end(ret));
    return ret;
  }
};

int main() {
  int N;
  cin >> N;
  vector< int64 > A(N);
  cin >> A;
  int T;
  cin >> T;
  vector< int > O(T), X(T), K(T);
  vector< int > deg(N);
  for (int i = 0; i < T; i++) {
    cin >> O[i] >> X[i] >> K[i];
    --X[i];
    if (O[i] == 1) {
      --K[i];
      deg[X[i]]++;
      deg[K[i]]++;
    }
  }
  int Q;
  cin >> Q;
  vector< vector< pair< int, int > > > qs(T + 1);
  for (int i = 0; i < Q; i++) {
    int s, t;
    cin >> s >> t;
    --t;
    qs[s].emplace_back(t, i);
  }
  vector< int64 > ans(Q);
  UnionFind uf(N);
  vector< vector< int > > vs(N);
  vector< int64 > sub(N);
  vector< vector< pair< int, int > > > g(N);
  vector< vector< pair< int, int64 > > > lazy(N);
  for (int i = 0; i < N; i++) {
    vs[i] = {i};
    lazy[i] = {{-1, 0ll}};
  }
  for(int i = 0; i <= T; i++) {
    for(auto& [k, id] : qs[i]) {
      int64 now = A[k];
      now -= sub[uf.find(k)];
      for(auto& [p, t] : g[k]) {
        for(auto& [y, x] : lazy[p]) {
          if(t <= y) {
            now -= x;
          }
        }
      }
      chmax(now, 0ll);
      ans[id] = now;
    }
    if(i < T) {
      if(O[i] == 1) {
        int x = uf.find(X[i]);
        int y = uf.find(K[i]);
        if(make_pair(deg[X[i]], X[i]) < make_pair(deg[K[i]], K[i])) {
          g[X[i]].emplace_back(K[i], i);
        } else {
          g[K[i]].emplace_back(X[i], i);
        }
        if(x == y) continue;
        uf.unite(x, y);
        int New = uf.find(x);
        int Old = x ^ y ^ New;
        for(auto& v: vs[Old]) {
          A[v] -= sub[Old];
          A[v] += sub[New];
          vs[New].emplace_back(v);
        }
        vs[Old].clear();
      } else if(O[i] == 2) {
        A[X[i]] -= K[i];
      } else if(O[i] == 3) {
        A[X[i]] -= K[i];
        for(auto& [p,_] : g[X[i]]) A[p] -= K[i];
        //auto sum = lazy[X[i]].empty() ? 0 : lazy[X[i]].back().second;
        lazy[X[i]].emplace_back(i, K[i]);
      } else {
        sub[uf.find(X[i])] += K[i];
      }
    }
  }
  for(auto& p : ans) cout << p << "\n";
}
0