結果

問題 No.2588 Increasing Record
ユーザー noshi91noshi91
提出日時 2023-12-16 01:21:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 494 ms / 3,000 ms
コード長 1,030 bytes
コンパイル時間 2,597 ms
コンパイル使用メモリ 219,424 KB
実行使用メモリ 43,188 KB
最終ジャッジ日時 2024-09-27 06:47:39
合計ジャッジ時間 19,193 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 442 ms
22,144 KB
testcase_13 AC 434 ms
22,144 KB
testcase_14 AC 477 ms
22,272 KB
testcase_15 AC 443 ms
22,528 KB
testcase_16 AC 446 ms
27,268 KB
testcase_17 AC 462 ms
32,560 KB
testcase_18 AC 455 ms
37,752 KB
testcase_19 AC 425 ms
42,056 KB
testcase_20 AC 406 ms
42,944 KB
testcase_21 AC 391 ms
43,156 KB
testcase_22 AC 405 ms
43,028 KB
testcase_23 AC 401 ms
43,116 KB
testcase_24 AC 399 ms
43,036 KB
testcase_25 AC 410 ms
32,540 KB
testcase_26 AC 397 ms
37,856 KB
testcase_27 AC 366 ms
42,960 KB
testcase_28 AC 365 ms
42,736 KB
testcase_29 AC 370 ms
43,188 KB
testcase_30 AC 430 ms
32,652 KB
testcase_31 AC 463 ms
37,792 KB
testcase_32 AC 478 ms
41,964 KB
testcase_33 AC 487 ms
42,984 KB
testcase_34 AC 485 ms
43,016 KB
testcase_35 AC 494 ms
43,020 KB
testcase_36 AC 490 ms
43,024 KB
testcase_37 AC 387 ms
43,060 KB
testcase_38 AC 434 ms
32,516 KB
testcase_39 AC 399 ms
43,136 KB
testcase_40 AC 404 ms
43,024 KB
testcase_41 AC 405 ms
43,088 KB
testcase_42 AC 399 ms
43,016 KB
testcase_43 AC 399 ms
43,096 KB
testcase_44 AC 394 ms
33,116 KB
testcase_45 AC 388 ms
37,116 KB
testcase_46 AC 358 ms
41,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#include <atcoder/modint>
using mint = atcoder::modint998244353;

#include <atcoder/dsu>

int main() {
  int N, M;
  cin >> N >> M;

  vector<set<int>> l(N), r(N);
  vector<mint> a(N);
  for (int i = 0; i < M; i++) {
    int u, v;
    cin >> u >> v;
    u--, v--;
    l[v].insert(u);
    r[u].insert(v);
  }

  vector<mint> dp(N, 1);
  atcoder::dsu dsu(N);
  // invariant: true dp[v] = dp[v] + sum_{v in r[u]} a[u]
  for (int i = 0; i < N; i++) {
    int x = i;
    for (int j : l[i]) {
      int y = dsu.leader(j);
      if (x == y)
        continue;
      if (r[y].erase(i))
        dp[i] += a[y];
      dsu.merge(x, y);
      if (dsu.leader(i) == y)
        swap(x, y);
      if (r[x].size() < r[y].size())
        swap(r[x], r[y]), swap(a[x], a[y]);
      for (int k : r[y]) {
        dp[k] += a[y];
        if (r[x].insert(k).second)
          dp[k] -= a[x];
      }
      r[y].clear();
    }
    a[x] += dp[i];
  }

  cout << accumulate(dp.begin(), dp.end(), mint(0)).val();
}
0