結果

問題 No.1997 X Lighting
ユーザー first_vilfirst_vil
提出日時 2022-07-01 23:54:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 1,323 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 95,328 KB
最終ジャッジ日時 2024-11-26 08:02:10
合計ジャッジ時間 6,546 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,592 KB
testcase_01 AC 41 ms
53,080 KB
testcase_02 AC 41 ms
53,004 KB
testcase_03 AC 41 ms
53,780 KB
testcase_04 AC 41 ms
53,304 KB
testcase_05 AC 65 ms
70,516 KB
testcase_06 AC 85 ms
75,964 KB
testcase_07 AC 42 ms
53,216 KB
testcase_08 AC 63 ms
70,072 KB
testcase_09 AC 59 ms
66,384 KB
testcase_10 AC 43 ms
54,388 KB
testcase_11 AC 49 ms
60,048 KB
testcase_12 AC 42 ms
53,184 KB
testcase_13 AC 92 ms
76,248 KB
testcase_14 AC 161 ms
93,968 KB
testcase_15 AC 130 ms
80,960 KB
testcase_16 AC 149 ms
84,228 KB
testcase_17 AC 237 ms
93,012 KB
testcase_18 AC 170 ms
87,440 KB
testcase_19 AC 280 ms
93,668 KB
testcase_20 AC 259 ms
95,028 KB
testcase_21 AC 258 ms
95,328 KB
testcase_22 AC 274 ms
93,800 KB
testcase_23 AC 174 ms
86,940 KB
testcase_24 AC 86 ms
76,708 KB
testcase_25 AC 242 ms
94,268 KB
testcase_26 AC 223 ms
89,604 KB
testcase_27 AC 222 ms
89,792 KB
testcase_28 AC 131 ms
82,328 KB
testcase_29 AC 131 ms
82,056 KB
testcase_30 AC 240 ms
94,444 KB
testcase_31 AC 186 ms
86,632 KB
testcase_32 AC 119 ms
78,236 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