結果

問題 No.2662 Installing Cell Towers
ユーザー 2bit2bit
提出日時 2023-03-04 17:31:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 728 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-09-30 03:43:30
合計ジャッジ時間 7,746 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 95 ms
11,392 KB
testcase_05 AC 668 ms
19,840 KB
testcase_06 AC 402 ms
11,648 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 462 ms
10,752 KB
testcase_09 AC 93 ms
11,264 KB
testcase_10 AC 632 ms
19,712 KB
testcase_11 AC 543 ms
18,816 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 478 ms
10,624 KB
testcase_14 AC 657 ms
20,224 KB
testcase_15 AC 728 ms
16,512 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 629 ms
19,840 KB
testcase_18 AC 627 ms
20,096 KB
testcase_19 AC 30 ms
10,368 KB
testcase_20 AC 28 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
ans = [0]*(N+2)
S = [0]*(N+2)
def add(l,r,C,c=1):
  ans[l] += C
  ans[r] -= C
  S[l] += c
  S[r] -= c
for _ in range(M):
  p,q = map(int,input().split())
  a = q - p
  if 0 <= a:
    add(1,p,a)
  else:
    add(min(abs(a)+1,p),p,a)
  b = p + q
  add(p,min(b+1,N+1),b,-1)
for i in range(1,N+1):
  S[i + 1] += S[i]
  ans[i + 1] += ans[i]
  print(ans[i] + S[i] * i,end = " ")
print()
0