結果

問題 No.1997 X Lighting
ユーザー Kiri8128Kiri8128
提出日時 2022-07-01 23:23:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 940 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 169,872 KB
最終ジャッジ日時 2024-05-04 17:54:21
合計ジャッジ時間 6,234 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,224 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 74 ms
71,552 KB
testcase_06 AC 100 ms
76,288 KB
testcase_07 AC 41 ms
53,504 KB
testcase_08 AC 68 ms
70,912 KB
testcase_09 AC 64 ms
68,480 KB
testcase_10 AC 36 ms
52,352 KB
testcase_11 AC 40 ms
53,376 KB
testcase_12 AC 37 ms
52,480 KB
testcase_13 AC 120 ms
76,032 KB
testcase_14 AC 212 ms
136,612 KB
testcase_15 AC 134 ms
91,904 KB
testcase_16 AC 156 ms
101,704 KB
testcase_17 AC 254 ms
127,980 KB
testcase_18 AC 196 ms
105,180 KB
testcase_19 AC 276 ms
158,832 KB
testcase_20 AC 285 ms
154,640 KB
testcase_21 AC 292 ms
154,252 KB
testcase_22 AC 290 ms
158,864 KB
testcase_23 AC 196 ms
120,876 KB
testcase_24 AC 91 ms
76,928 KB
testcase_25 AC 291 ms
169,872 KB
testcase_26 AC 259 ms
148,728 KB
testcase_27 AC 258 ms
150,664 KB
testcase_28 AC 139 ms
93,724 KB
testcase_29 AC 142 ms
91,904 KB
testcase_30 AC 287 ms
167,116 KB
testcase_31 AC 222 ms
133,908 KB
testcase_32 AC 119 ms
85,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
n = N - 1
pp = set()
mm = set()
ans = 0
for _ in range(M):
    x, y = map(int, input().split())
    x -= 1
    y -= 1
    p = x + y
    m = x - y
    if p not in pp:
        pp.add(p)
        ans += N - abs(p - n)
    if m not in mm:
        mm.add(m)
        ans += N - abs(m)

pp = sorted(pp)
mm = sorted(mm)
pp = sorted([n - abs(n - a) for a in pp])
mm = sorted([abs(a) for a in mm])
ppe = [a for a in pp if a % 2 == 0]
ppo = [a for a in pp if a % 2 == 1]
mme = [a for a in mm if a % 2 == 0]
mmo = [a for a in mm if a % 2 == 1]
def calc(pp, mm):
    SS = sorted(set(pp + mm))
    IA = {a: i for i, a in enumerate(SS)}
    pp = [IA[a] for a in pp]
    mm = [IA[a] for a in mm]
    C = [0] * (len(SS) + 1)
    for a in mm:
        C[a] += 1
    for i in range(len(SS)):
        C[i+1] += C[i]
    ret = 0
    for a in pp:
        ret += C[a]
    return ret
ans -= calc(ppe, mme) + calc(ppo, mmo)
print(ans)
0