結果

問題 No.1864 Shortest Paths Counting
ユーザー ChipppppChippppp
提出日時 2022-03-01 22:00:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,386 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 96,508 KB
最終ジャッジ日時 2024-07-16 13:21:22
合計ジャッジ時間 37,969 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 459 ms
51,360 KB
testcase_01 AC 465 ms
44,540 KB
testcase_02 AC 463 ms
44,040 KB
testcase_03 AC 468 ms
44,416 KB
testcase_04 AC 461 ms
44,544 KB
testcase_05 AC 466 ms
44,548 KB
testcase_06 AC 458 ms
44,288 KB
testcase_07 AC 467 ms
44,284 KB
testcase_08 AC 464 ms
44,044 KB
testcase_09 AC 1,767 ms
77,752 KB
testcase_10 AC 1,664 ms
78,188 KB
testcase_11 AC 1,531 ms
77,812 KB
testcase_12 TLE -
testcase_13 AC 1,533 ms
77,432 KB
testcase_14 AC 1,774 ms
78,540 KB
testcase_15 AC 1,847 ms
80,632 KB
testcase_16 AC 1,605 ms
77,608 KB
testcase_17 AC 1,807 ms
80,080 KB
testcase_18 AC 1,840 ms
79,268 KB
testcase_19 AC 1,594 ms
77,784 KB
testcase_20 AC 1,981 ms
80,908 KB
testcase_21 AC 1,599 ms
77,116 KB
testcase_22 AC 1,766 ms
78,976 KB
testcase_23 AC 1,618 ms
78,256 KB
testcase_24 AC 472 ms
44,304 KB
testcase_25 TLE -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  import numpy as np

  mod = 998244353

  # mod 998244353のFenwickTree
  class FenwickTreeMod:
    def __init__(self, n):
      self.n = n
      self.data = np.zeros(n + 1, dtype = np.int64)
    def add(self, k, x):
      k += 1
      while k <= self.n:
        self.data[k] += x
        self.data[k] %= mod
        k += k & -k
    def sum(self, k):
      res = 0
      while k:
        res += self.data[k]
        res %= mod
        k -= k & -k
      return res

  # 座標圧縮
  def compress(a):
    mem = {}
    for idx, elm in enumerate(sorted(set(a))):
      mem[elm] = idx
    return mem

  # 入力
  N = int(input())
  X, Y = np.zeros(N, dtype = np.int64), np.zeros(N, dtype = np.int64)
  for i in range(N):
    a, b = map(int, input().split())
    X[i], Y[i] = a + b, a - b

  # 座標を反転しておく
  if X[0] > X[-1]:
    for i in range(N):
      X[i] = -X[i]
  if Y[0] > Y[-1]:
    for i in range(N):
      Y[i] = -Y[i]
  
  # y座標を圧縮
  mem = compress(Y)
  for i in range(N):
    Y[i] = mem[Y[i]]
  
  # x, y座標が範囲内の点のみソート
  points = [(i, j) for i, j in zip(X, Y) if X[0] <= i <= X[-1] and Y[0] <= j <= Y[-1]]
  points.sort()

  # DP
  ft = FenwickTreeMod(len(mem))
  ft.add(Y[0], 1)
  for i in range(1, len(points) - 1):
    ft.add(points[i][1], ft.sum(points[i][1] + 1))

  # 出力
  print(ft.sum(Y[-1] + 1))
main()
0