結果

問題 No.1997 X Lighting
ユーザー first_vilfirst_vil
提出日時 2022-07-01 23:54:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 1,323 bytes
コンパイル時間 1,886 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 95,072 KB
最終ジャッジ日時 2024-05-04 18:24:38
合計ジャッジ時間 7,135 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 72 ms
69,888 KB
testcase_06 AC 92 ms
75,776 KB
testcase_07 AC 43 ms
53,376 KB
testcase_08 AC 69 ms
68,736 KB
testcase_09 AC 63 ms
65,920 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 49 ms
59,392 KB
testcase_12 AC 42 ms
52,480 KB
testcase_13 AC 103 ms
75,776 KB
testcase_14 AC 168 ms
93,724 KB
testcase_15 AC 141 ms
80,768 KB
testcase_16 AC 157 ms
84,480 KB
testcase_17 AC 244 ms
92,824 KB
testcase_18 AC 177 ms
87,680 KB
testcase_19 AC 281 ms
93,308 KB
testcase_20 AC 265 ms
94,904 KB
testcase_21 AC 262 ms
95,072 KB
testcase_22 AC 288 ms
93,676 KB
testcase_23 AC 183 ms
87,296 KB
testcase_24 AC 95 ms
76,240 KB
testcase_25 AC 253 ms
94,440 KB
testcase_26 AC 230 ms
89,728 KB
testcase_27 AC 231 ms
89,600 KB
testcase_28 AC 142 ms
82,560 KB
testcase_29 AC 142 ms
82,176 KB
testcase_30 AC 249 ms
94,444 KB
testcase_31 AC 197 ms
86,912 KB
testcase_32 AC 129 ms
78,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
import sys

int1 = lambda x: int(x) - 1

# input = lambda: sys.stdin.buffer.readline()
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
i1 = lambda: int1(input())
mi = lambda: map(int, input().split())
mi1 = lambda: map(int1, input().split())
li = lambda: list(mi())
li1 = lambda: list(mi1())
lli = lambda n: [li() for _ in range(n)]

INF = float("inf")
mod = int(1e9 + 7)
# mod = 998244353

n, m = mi()
down = set()
left_down = set()
left_up = set()
bottom_up = set()
for _ in range(m):
    y, x = mi()
    if y <= x:
        down.add(x - y)
    else:
        left_down.add(y - x)
    if y + x <= n + 1:
        left_up.add(y + x)
    else:
        bottom_up.add(y + x - n - 1)

ans = 0
for x in down:
    ans += n - x
for y in left_down:
    ans += n - y
for y in left_up:
    ans += y - 1
for x in bottom_up:
    ans += n - x


def oe(s):
    res = [[], []]
    for x in s:
        res[x & 1].append(x)
    res[0].sort()
    res[1].sort()
    return res


d = oe(down)
ld = oe(left_down)
lu = oe(left_up)
bu = oe(bottom_up)
for y in left_up:
    ans -= bisect_left(d[y & 1], y)
    ans -= bisect_left(ld[y & 1], y)
for y in left_down:
    ans -= bisect_left(bu[(n + 1 - y) & 1], n - y)
for x in down:
    ans -= bisect_left(bu[(x & 1) ^ (~n & 1)], n - x)
print(ans)
0