結果

問題 No.1997 X Lighting
ユーザー MasKoaTSMasKoaTS
提出日時 2022-04-16 18:27:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 97,720 KB
最終ジャッジ日時 2024-06-07 15:41:22
合計ジャッジ時間 5,716 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 61 ms
67,072 KB
testcase_06 AC 81 ms
75,648 KB
testcase_07 AC 42 ms
52,736 KB
testcase_08 AC 56 ms
64,768 KB
testcase_09 AC 58 ms
64,768 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 46 ms
58,368 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 89 ms
76,672 KB
testcase_14 AC 173 ms
97,612 KB
testcase_15 AC 127 ms
81,408 KB
testcase_16 AC 138 ms
83,200 KB
testcase_17 AC 202 ms
95,104 KB
testcase_18 AC 155 ms
88,704 KB
testcase_19 AC 223 ms
95,724 KB
testcase_20 AC 238 ms
97,380 KB
testcase_21 AC 232 ms
97,272 KB
testcase_22 AC 228 ms
96,112 KB
testcase_23 AC 156 ms
91,392 KB
testcase_24 AC 88 ms
76,544 KB
testcase_25 AC 226 ms
97,472 KB
testcase_26 AC 203 ms
93,136 KB
testcase_27 AC 203 ms
93,420 KB
testcase_28 AC 118 ms
81,664 KB
testcase_29 AC 121 ms
81,408 KB
testcase_30 AC 223 ms
97,720 KB
testcase_31 AC 172 ms
91,264 KB
testcase_32 AC 112 ms
79,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right
import sys
input = sys.stdin.readline

n, m = map(int, input().split())
xst = set([]);	yst = set([])
for _ in [0] * m:
	X, Y = map(int, input().split())
	xst.add((X - 1) + (Y - 1))
	yst.add((X - 1) - (Y - 1))

lis = [[] for _ in [0] * 2]
for x in sorted(xst):
	lis[x & 1].append(x)

ans = 0
for x in xst:
	ans += min(x, n - 1) - max(-n + 1 + x, 0) + 1
for y in yst:
	b = abs(y) & 1
	ans += min(n - 1 + y, n - 1) - max(y, 0) + 1
	l = bisect_left(lis[b], max(y, -y))
	r = bisect_right(lis[b], min(2 * (n - 1) - y, 2 * (n - 1) + y))
	ans -= r - l

print(ans)
0