結果

問題 No.1997 X Lighting
ユーザー MasKoaTSMasKoaTS
提出日時 2022-03-31 13:55:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 852 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 104,752 KB
最終ジャッジ日時 2024-11-17 03:20:46
合計ジャッジ時間 6,793 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 37 ms
52,736 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 68 ms
70,016 KB
testcase_06 AC 82 ms
75,904 KB
testcase_07 AC 41 ms
53,248 KB
testcase_08 AC 59 ms
67,200 KB
testcase_09 AC 60 ms
66,304 KB
testcase_10 AC 40 ms
52,608 KB
testcase_11 AC 52 ms
60,928 KB
testcase_12 AC 41 ms
52,736 KB
testcase_13 AC 94 ms
76,672 KB
testcase_14 AC 233 ms
103,636 KB
testcase_15 AC 156 ms
81,408 KB
testcase_16 AC 166 ms
84,352 KB
testcase_17 AC 292 ms
94,976 KB
testcase_18 AC 206 ms
91,136 KB
testcase_19 AC 309 ms
102,632 KB
testcase_20 AC 320 ms
101,352 KB
testcase_21 AC 306 ms
101,480 KB
testcase_22 AC 309 ms
103,160 KB
testcase_23 AC 207 ms
93,568 KB
testcase_24 AC 103 ms
76,296 KB
testcase_25 AC 315 ms
104,264 KB
testcase_26 AC 277 ms
99,284 KB
testcase_27 AC 279 ms
99,812 KB
testcase_28 AC 151 ms
81,664 KB
testcase_29 AC 147 ms
81,408 KB
testcase_30 AC 300 ms
104,752 KB
testcase_31 AC 232 ms
91,776 KB
testcase_32 AC 132 ms
81,152 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())
	X -= 1;	Y -= 1
	xst.add(X + Y)
	yst.add(X - Y)

xlis = [[] for _ in [0] * 2]
ylis = [[] for _ in [0] * 2]
for x in sorted(xst):
	b = abs(x) & 1
	xlis[b].append(x)
for y in sorted(yst):
	b = abs(y) & 1
	ylis[b].append(y)

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

ans = num - dc // 2
print(ans)
0