結果

問題 No.1864 Shortest Paths Counting
ユーザー ChipppppChippppp
提出日時 2021-12-26 17:00:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 435 ms / 2,000 ms
コード長 1,330 bytes
コンパイル時間 4,952 ms
コンパイル使用メモリ 273,368 KB
実行使用メモリ 21,956 KB
最終ジャッジ日時 2023-09-23 13:34:33
合計ジャッジ時間 13,102 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 422 ms
21,784 KB
testcase_10 AC 407 ms
21,816 KB
testcase_11 AC 409 ms
21,832 KB
testcase_12 AC 408 ms
21,744 KB
testcase_13 AC 413 ms
21,756 KB
testcase_14 AC 417 ms
21,828 KB
testcase_15 AC 435 ms
21,868 KB
testcase_16 AC 421 ms
21,884 KB
testcase_17 AC 429 ms
21,956 KB
testcase_18 AC 406 ms
21,696 KB
testcase_19 AC 396 ms
21,832 KB
testcase_20 AC 419 ms
21,952 KB
testcase_21 AC 411 ms
21,820 KB
testcase_22 AC 421 ms
21,772 KB
testcase_23 AC 402 ms
21,872 KB
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 399 ms
21,892 KB
testcase_26 AC 347 ms
21,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using ll = long long;
constexpr ll mod = 998244353;

// 座標圧縮
map<ll, int> compress(vector<ll> a) {
  map<ll, int> mem;
  for (auto i: a) mem[i] = 0;
  int cnt = 0;
  for (auto& [i, j]: mem) j = cnt++;
  return mem;
}

int main() {
  // 入力
  int N;
  cin >> N;
  vector<pair<ll, ll>> points(N);
  for (int i = 0; i < N; ++i) {
    ll x, y;
    cin >> x >> y;
    points[i] = {x + y, y - x};
  }

  // 座標を反転しておく
  if (points.front().first > points.back().first) {
    for (auto& [i, j]: points) i = -i;
  }
  if (points.front().second > points.back().second) {
    for (auto& [i, j]: points) j = -j;
  }

  // pointsのy座標を座標圧縮
  vector<ll> y(N);
  for (int i = 0; i < N; ++i) y[i] = points[i].second;
  auto mem = compress(y);
  for (auto& [i, j]: points) j = mem[j];

  // ソート
  sort(points.begin() + 1, points.end() - 1);

  // DP
  atcoder::fenwick_tree<atcoder::modint998244353> ft(mem.size());
  ft.add(points.front().second, 1);
  for (int i = 1; i < N - 1; ++i) {
    if (points[i].first < points.front().first || points.back().first < points[i].first) continue;
    ft.add(points[i].second, ft.sum(0, points[i].second + 1));
  }

  // 出力
  cout << ft.sum(0, points.back().second + 1).val() << '\n';
}
0