結果
問題 | No.2930 Larger Mex |
ユーザー | yel_ow |
提出日時 | 2024-11-24 02:27:35 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,088 bytes |
コンパイル時間 | 3,737 ms |
コンパイル使用メモリ | 251,324 KB |
実行使用メモリ | 14,976 KB |
最終ジャッジ日時 | 2024-11-24 02:27:57 |
合計ジャッジ時間 | 21,149 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 5 ms
5,248 KB |
testcase_04 | AC | 6 ms
5,248 KB |
testcase_05 | AC | 6 ms
5,248 KB |
testcase_06 | AC | 5 ms
5,248 KB |
testcase_07 | AC | 6 ms
5,248 KB |
testcase_08 | AC | 296 ms
5,248 KB |
testcase_09 | AC | 271 ms
5,248 KB |
testcase_10 | AC | 300 ms
5,248 KB |
testcase_11 | AC | 243 ms
5,248 KB |
testcase_12 | AC | 362 ms
8,064 KB |
testcase_13 | AC | 322 ms
6,016 KB |
testcase_14 | AC | 374 ms
9,472 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 341 ms
6,528 KB |
testcase_20 | AC | 321 ms
6,016 KB |
testcase_21 | RE | - |
testcase_22 | AC | 403 ms
10,368 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | WA | - |
testcase_26 | AC | 273 ms
5,248 KB |
testcase_27 | AC | 238 ms
5,248 KB |
testcase_28 | AC | 259 ms
5,248 KB |
testcase_29 | AC | 253 ms
5,248 KB |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | AC | 223 ms
6,528 KB |
testcase_36 | RE | - |
testcase_37 | AC | 368 ms
7,808 KB |
testcase_38 | AC | 365 ms
8,448 KB |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | AC | 275 ms
5,248 KB |
testcase_43 | AC | 268 ms
5,248 KB |
testcase_44 | AC | 263 ms
5,248 KB |
testcase_45 | AC | 268 ms
5,248 KB |
testcase_46 | AC | 247 ms
5,248 KB |
testcase_47 | AC | 237 ms
5,248 KB |
testcase_48 | AC | 173 ms
5,248 KB |
testcase_49 | AC | 257 ms
5,248 KB |
testcase_50 | AC | 286 ms
5,248 KB |
testcase_51 | WA | - |
testcase_52 | AC | 520 ms
14,976 KB |
ソースコード
//#include <monsterenergy> #include <bits/stdc++.h> using namespace std; typedef long long ll; #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() const int MAX = 1e9; const int MIN = -1*1e9; const ll MAXLL = 1e18; const ll MINLL = -1*1e18; int main() { int N,M; cin >> N >> M; if(M == 0) { for(int i = 0; i < N; i++) cout << N-i << endl; return 0; } M--; vector<int> V(N); for(int i = 0; i < N; i++) cin >> V[i]; vector<int> Count(M+1),Ans(N+2); set<int> S; int r = 0; for(int l = 0; l < N; l++) { if(l) { Count[V[l-1]]--; if(Count[V[l-1]] == 0) S.erase(V[l-1]); } while(S.size() <= M) { if(r == N) break; Count[V[r]]++; if(Count[V[r]] == 1 && V[r] <= M) S.insert(V[r]); r++; } if(S.size() <= M) continue; Ans[r-l]++; Ans[N-l+1]--; } for(int i = 1; i <= N; i++) { Ans[i+1] += Ans[i]; cout << Ans[i] << endl; } return 0; }