結果

問題 No.1997 X Lighting
ユーザー ShirotsumeShirotsume
提出日時 2022-04-22 00:51:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 977 bytes
コンパイル時間 507 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 125,828 KB
最終ジャッジ日時 2024-06-23 03:34:06
合計ジャッジ時間 8,265 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 82 ms
76,712 KB
testcase_06 AC 122 ms
81,152 KB
testcase_07 AC 49 ms
53,632 KB
testcase_08 AC 89 ms
76,884 KB
testcase_09 AC 80 ms
73,216 KB
testcase_10 AC 40 ms
52,736 KB
testcase_11 AC 50 ms
59,904 KB
testcase_12 AC 44 ms
52,992 KB
testcase_13 AC 162 ms
87,168 KB
testcase_14 AC 262 ms
125,828 KB
testcase_15 AC 169 ms
86,400 KB
testcase_16 AC 189 ms
91,380 KB
testcase_17 AC 285 ms
108,392 KB
testcase_18 AC 209 ms
96,792 KB
testcase_19 AC 340 ms
125,696 KB
testcase_20 AC 331 ms
115,660 KB
testcase_21 AC 323 ms
115,584 KB
testcase_22 AC 330 ms
125,344 KB
testcase_23 AC 219 ms
101,552 KB
testcase_24 AC 105 ms
77,388 KB
testcase_25 AC 310 ms
120,192 KB
testcase_26 AC 287 ms
110,316 KB
testcase_27 AC 289 ms
110,436 KB
testcase_28 AC 166 ms
86,912 KB
testcase_29 AC 165 ms
86,616 KB
testcase_30 AC 318 ms
125,824 KB
testcase_31 AC 244 ms
104,192 KB
testcase_32 AC 144 ms
82,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

n, m = map(int,input().split())
xy = [list(map(int,input().split())) for _ in range(m)]

plus_odd = []
plus_even = []
minus_odd = []
minus_even = []
ans = 0
x_set = set()
y_set = set()
for i in range(m):
    x, y = xy[i]
    X = x + y - 2
    Y = x - y
    if X not in x_set:
        ans += min(X, n - 1) - max(1 + X - n, 0) + 1
        x_set.add(X)
    if Y not in y_set:
        ans += min(n - 1 + Y, n - 1) - max(Y, 0) + 1
        y_set.add(Y)

for v in y_set:
    if v % 2:
        plus_odd.append(abs(v))
    else:
        plus_even.append(abs(v))
for v in x_set:
    if v % 2:
        minus_odd.append(v)
    else:
        minus_even.append(v)

minus_odd.sort()
minus_even.sort()
plus_even.sort()
plus_odd.sort()
for y in plus_odd:
    ans -= max(0, bisect.bisect(minus_odd, 2 * (n - 1) - y) - bisect.bisect(minus_odd, y - 1))
for y in plus_even:
    ans -= max(0, bisect.bisect(minus_even, 2 * (n - 1) - y) - bisect.bisect(minus_even, y - 1))
print(ans)

0