結果

問題 No.1997 X Lighting
ユーザー MasKoaTSMasKoaTS
提出日時 2022-04-23 15:10:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 774 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,816 KB
最終ジャッジ日時 2024-06-25 02:13:55
合計ジャッジ時間 12,884 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 41 ms
10,752 KB
testcase_06 AC 116 ms
11,264 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 39 ms
11,008 KB
testcase_09 AC 35 ms
11,008 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 31 ms
11,008 KB
testcase_13 AC 184 ms
11,520 KB
testcase_14 AC 584 ms
32,816 KB
testcase_15 AC 230 ms
17,804 KB
testcase_16 AC 282 ms
18,916 KB
testcase_17 AC 611 ms
28,336 KB
testcase_18 AC 355 ms
20,264 KB
testcase_19 AC 713 ms
29,784 KB
testcase_20 AC 756 ms
30,940 KB
testcase_21 AC 774 ms
31,580 KB
testcase_22 AC 729 ms
29,860 KB
testcase_23 AC 401 ms
21,316 KB
testcase_24 AC 45 ms
11,264 KB
testcase_25 AC 727 ms
30,780 KB
testcase_26 AC 614 ms
29,260 KB
testcase_27 AC 645 ms
28,972 KB
testcase_28 AC 228 ms
18,196 KB
testcase_29 AC 218 ms
18,240 KB
testcase_30 AC 710 ms
30,872 KB
testcase_31 AC 481 ms
22,588 KB
testcase_32 AC 152 ms
13,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right
from collections import deque
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))

ans = 0
xlis = [[] for _ in [0] * 2]
for x in xst:
	ans += min(x, n - 1) - max(-n + 1 + x, 0) + 1
	xlis[x & 1].append(x)
for y in yst:
	ans += min(n - 1 + y, n - 1) - max(y, 0) + 1

que = [deque(sorted(lis)) for lis in xlis]
for y in sorted(abs(y) for y in yst):
	lv, rv = y, 2 * (n - 1) - y
	b = y & 1
	while(que[b] and que[b][-1] > rv):
		que[b].pop()
	while(que[b] and que[b][0] < lv):
		que[b].popleft()
	ans -= len(que[b])

print(ans)
0