結果
問題 | No.59 鉄道の旅 |
ユーザー | mkawa2 |
提出日時 | 2020-01-09 12:05:26 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,420 bytes |
コンパイル時間 | 282 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 11,904 KB |
最終ジャッジ日時 | 2024-05-02 13:39:40 |
合計ジャッジ時間 | 1,483 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
11,520 KB |
testcase_01 | AC | 28 ms
11,520 KB |
testcase_02 | AC | 27 ms
11,520 KB |
testcase_03 | AC | 27 ms
11,648 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 37 ms
11,648 KB |
testcase_12 | AC | 85 ms
11,520 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
ソースコード
import sys sys.setrecursionlimit(10 ** 6) from bisect import * from collections import * from heapq import * int1 = lambda x: int(x) - 1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def MI(): return map(int, sys.stdin.readline().split()) def MI1(): return map(int1, sys.stdin.readline().split()) def MF(): return map(float, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def LI1(): return list(map(int1, sys.stdin.readline().split())) def LF(): return list(map(float, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] dij = [(0, 1), (1, 0), (0, -1), (-1, 0)] class BitSum: def __init__(self, n): self.n = n + 3 self.table = [0] * (self.n + 1) def update(self, i, x): i += 1 while i <= self.n: self.table[i] += x i += i & -i def sum(self, i): i += 1 res = 0 while i > 0: res += self.table[i] i -= i & -i return res def main(): n,k=MI() bit=BitSum(100005) cnt=0 for _ in range(n): w=II() if w>0: if cnt-bit.sum(w-1)<k: bit.update(w,1) cnt+=1 else: w=-w if bit.sum(w)-bit.sum(w-1): bit.update(w,-1) cnt-=1 print(cnt) main()