結果

問題 No.1997 X Lighting
ユーザー MasKoaTSMasKoaTS
提出日時 2022-04-16 13:24:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 894 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 29,120 KB
最終ジャッジ日時 2024-06-07 13:18:18
合計ジャッジ時間 14,105 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 42 ms
10,752 KB
testcase_06 AC 117 ms
11,136 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 41 ms
10,752 KB
testcase_09 AC 34 ms
10,752 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 32 ms
10,624 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 182 ms
11,648 KB
testcase_14 AC 682 ms
29,120 KB
testcase_15 AC 238 ms
17,252 KB
testcase_16 AC 311 ms
18,108 KB
testcase_17 AC 701 ms
27,008 KB
testcase_18 AC 393 ms
18,948 KB
testcase_19 AC 814 ms
27,228 KB
testcase_20 AC 890 ms
28,600 KB
testcase_21 AC 894 ms
28,728 KB
testcase_22 AC 827 ms
27,260 KB
testcase_23 AC 454 ms
20,000 KB
testcase_24 AC 47 ms
11,136 KB
testcase_25 AC 859 ms
28,192 KB
testcase_26 AC 720 ms
27,888 KB
testcase_27 AC 735 ms
27,884 KB
testcase_28 AC 254 ms
17,780 KB
testcase_29 AC 247 ms
17,524 KB
testcase_30 AC 824 ms
28,040 KB
testcase_31 AC 551 ms
21,144 KB
testcase_32 AC 169 ms
13,440 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