結果
問題 | No.2154 あさかつの参加人数 |
ユーザー | Kazun |
提出日時 | 2022-12-10 01:02:21 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 255 ms / 2,000 ms |
コード長 | 1,994 bytes |
コンパイル時間 | 222 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 101,632 KB |
最終ジャッジ日時 | 2024-10-14 23:22:58 |
合計ジャッジ時間 | 9,369 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 243 ms
97,380 KB |
testcase_01 | AC | 249 ms
97,896 KB |
testcase_02 | AC | 255 ms
97,380 KB |
testcase_03 | AC | 245 ms
97,900 KB |
testcase_04 | AC | 251 ms
97,508 KB |
testcase_05 | AC | 127 ms
75,904 KB |
testcase_06 | AC | 202 ms
87,936 KB |
testcase_07 | AC | 149 ms
88,952 KB |
testcase_08 | AC | 145 ms
96,512 KB |
testcase_09 | AC | 93 ms
86,272 KB |
testcase_10 | AC | 141 ms
91,904 KB |
testcase_11 | AC | 215 ms
95,492 KB |
testcase_12 | AC | 175 ms
92,416 KB |
testcase_13 | AC | 131 ms
82,176 KB |
testcase_14 | AC | 190 ms
91,520 KB |
testcase_15 | AC | 144 ms
90,528 KB |
testcase_16 | AC | 191 ms
94,848 KB |
testcase_17 | AC | 212 ms
91,264 KB |
testcase_18 | AC | 213 ms
96,768 KB |
testcase_19 | AC | 77 ms
78,080 KB |
testcase_20 | AC | 187 ms
92,544 KB |
testcase_21 | AC | 89 ms
86,272 KB |
testcase_22 | AC | 112 ms
96,824 KB |
testcase_23 | AC | 196 ms
97,152 KB |
testcase_24 | AC | 233 ms
101,632 KB |
ソースコード
class Imos_1: def __init__(self, N): """ 区間 0<=t<N に対する Imos 法を準備する. """ self.__N=N self.list=[0]*(N+1) def __len__(self): return len(self.list)-1 def add(self, l, r, x=1): """閉区間 [l, r] に x を加算する.""" assert 0<=l<self.__N assert 0<=r<self.__N if l<=r: self.list[l]+=x self.list[r+1]-=x def cumulative_sum(self): """累積和を求める. """ X=self.list.copy()[:-1] for i in range(1,len(self)): X[i]+=X[i-1] return X #================================================= from collections import defaultdict class Sparse_Imos_1: def __init__(self): self.dict=defaultdict(int) def add(self, l, r, x=1): """閉区間 [l,r] に x を加算する. """ if l<=r: self.dict[l]+=x self.dict[r+1]-=x def cumulative_sum(self, since, until): """累積和を求める. [Output] (y, l, r) という形のリスト. ただし, (y, l, r) は l<=x<=y の範囲では y であるということを意味する. """ Y=[] S=0 t_old=since dic=self.dict for t in sorted(dic): if t>until: break if dic[t]==0: continue if t_old<=t-1: Y.append((S, t_old,t-1)) S+=dic[t] t_old=t if t_old<=until: Y.append((S, t_old,until)) return Y #================================================== def solve(): N,M=map(int,input().split()) I=Imos_1(N+1) for _ in range(M): L,R=map(int,input().split()) I.add(R,L) J=I.cumulative_sum() return J[1:N+1][::-1] #================================================== import sys input=sys.stdin.readline write=sys.stdout.write write("\n".join(map(str,solve())))