結果

問題 No.1997 X Lighting
ユーザー Kiri8128Kiri8128
提出日時 2022-07-01 23:23:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 940 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 169,364 KB
最終ジャッジ日時 2024-11-26 07:20:58
合計ジャッジ時間 6,167 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,020 KB
testcase_01 AC 37 ms
52,488 KB
testcase_02 AC 39 ms
52,492 KB
testcase_03 AC 33 ms
53,496 KB
testcase_04 AC 34 ms
52,736 KB
testcase_05 AC 61 ms
71,956 KB
testcase_06 AC 86 ms
75,968 KB
testcase_07 AC 39 ms
53,312 KB
testcase_08 AC 61 ms
71,600 KB
testcase_09 AC 58 ms
68,564 KB
testcase_10 AC 36 ms
53,168 KB
testcase_11 AC 37 ms
53,104 KB
testcase_12 AC 35 ms
52,968 KB
testcase_13 AC 103 ms
75,812 KB
testcase_14 AC 194 ms
136,484 KB
testcase_15 AC 124 ms
91,676 KB
testcase_16 AC 144 ms
101,056 KB
testcase_17 AC 242 ms
128,172 KB
testcase_18 AC 162 ms
105,304 KB
testcase_19 AC 281 ms
158,584 KB
testcase_20 AC 291 ms
154,388 KB
testcase_21 AC 289 ms
154,388 KB
testcase_22 AC 274 ms
158,352 KB
testcase_23 AC 187 ms
120,488 KB
testcase_24 AC 81 ms
76,740 KB
testcase_25 AC 282 ms
169,364 KB
testcase_26 AC 246 ms
148,344 KB
testcase_27 AC 259 ms
150,400 KB
testcase_28 AC 131 ms
93,456 KB
testcase_29 AC 128 ms
91,696 KB
testcase_30 AC 278 ms
166,864 KB
testcase_31 AC 213 ms
134,104 KB
testcase_32 AC 116 ms
85,852 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