結果

問題 No.1997 X Lighting
ユーザー MasKoaTSMasKoaTS
提出日時 2022-04-16 18:27:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 98,140 KB
最終ジャッジ日時 2024-12-25 22:01:52
合計ジャッジ時間 6,469 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 62 ms
66,944 KB
testcase_06 AC 73 ms
75,976 KB
testcase_07 AC 38 ms
52,992 KB
testcase_08 AC 48 ms
64,896 KB
testcase_09 AC 53 ms
65,152 KB
testcase_10 AC 38 ms
52,864 KB
testcase_11 AC 42 ms
58,624 KB
testcase_12 AC 38 ms
52,224 KB
testcase_13 AC 79 ms
76,800 KB
testcase_14 AC 160 ms
96,840 KB
testcase_15 AC 118 ms
81,228 KB
testcase_16 AC 137 ms
83,200 KB
testcase_17 AC 198 ms
95,176 KB
testcase_18 AC 151 ms
89,088 KB
testcase_19 AC 225 ms
95,216 KB
testcase_20 AC 227 ms
97,504 KB
testcase_21 AC 227 ms
98,140 KB
testcase_22 AC 214 ms
95,608 KB
testcase_23 AC 146 ms
90,860 KB
testcase_24 AC 84 ms
75,988 KB
testcase_25 AC 221 ms
97,088 KB
testcase_26 AC 198 ms
93,772 KB
testcase_27 AC 188 ms
94,068 KB
testcase_28 AC 109 ms
81,080 KB
testcase_29 AC 108 ms
81,068 KB
testcase_30 AC 209 ms
97,336 KB
testcase_31 AC 160 ms
91,648 KB
testcase_32 AC 98 ms
79,896 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