結果

問題 No.1997 X Lighting
ユーザー MasKoaTSMasKoaTS
提出日時 2022-04-16 13:24:50
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 873 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,988 KB
最終ジャッジ日時 2024-12-25 17:09:26
合計ジャッジ時間 13,519 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 32 ms
10,496 KB
testcase_02 AC 32 ms
10,496 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 39 ms
10,752 KB
testcase_06 AC 115 ms
11,008 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 37 ms
10,624 KB
testcase_09 AC 34 ms
10,752 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 32 ms
10,496 KB
testcase_12 AC 32 ms
10,624 KB
testcase_13 AC 177 ms
11,392 KB
testcase_14 AC 680 ms
28,988 KB
testcase_15 AC 234 ms
16,996 KB
testcase_16 AC 293 ms
18,116 KB
testcase_17 AC 655 ms
26,884 KB
testcase_18 AC 369 ms
18,692 KB
testcase_19 AC 773 ms
27,224 KB
testcase_20 AC 858 ms
28,472 KB
testcase_21 AC 873 ms
28,344 KB
testcase_22 AC 800 ms
27,144 KB
testcase_23 AC 435 ms
19,868 KB
testcase_24 AC 46 ms
11,136 KB
testcase_25 AC 819 ms
28,188 KB
testcase_26 AC 676 ms
27,824 KB
testcase_27 AC 685 ms
27,712 KB
testcase_28 AC 246 ms
17,524 KB
testcase_29 AC 240 ms
17,400 KB
testcase_30 AC 802 ms
27,888 KB
testcase_31 AC 544 ms
21,020 KB
testcase_32 AC 163 ms
13,312 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