結果
問題 | No.2930 Larger Mex |
ユーザー | loop0919 |
提出日時 | 2024-09-13 16:42:37 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,305 bytes |
コンパイル時間 | 1,021 ms |
コンパイル使用メモリ | 95,184 KB |
実行使用メモリ | 11,808 KB |
最終ジャッジ日時 | 2024-10-12 06:39:41 |
合計ジャッジ時間 | 21,111 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 682 ms
5,504 KB |
testcase_09 | AC | 795 ms
5,504 KB |
testcase_10 | AC | 655 ms
5,632 KB |
testcase_11 | AC | 292 ms
5,248 KB |
testcase_12 | AC | 289 ms
6,016 KB |
testcase_13 | AC | 971 ms
5,760 KB |
testcase_14 | AC | 141 ms
6,400 KB |
testcase_15 | AC | 58 ms
5,376 KB |
testcase_16 | AC | 968 ms
5,248 KB |
testcase_17 | AC | 682 ms
5,760 KB |
testcase_18 | AC | 220 ms
5,248 KB |
testcase_19 | AC | 749 ms
5,632 KB |
testcase_20 | AC | 1,773 ms
5,504 KB |
testcase_21 | AC | 1,612 ms
5,632 KB |
testcase_22 | AC | 38 ms
6,016 KB |
testcase_23 | AC | 1,138 ms
5,376 KB |
testcase_24 | AC | 254 ms
5,504 KB |
testcase_25 | AC | 38 ms
6,144 KB |
testcase_26 | AC | 28 ms
5,888 KB |
testcase_27 | AC | 24 ms
5,248 KB |
testcase_28 | AC | 26 ms
5,632 KB |
testcase_29 | AC | 27 ms
5,504 KB |
testcase_30 | AC | 31 ms
5,376 KB |
testcase_31 | AC | 26 ms
5,248 KB |
testcase_32 | AC | 32 ms
5,760 KB |
testcase_33 | AC | 32 ms
5,504 KB |
testcase_34 | AC | 1,114 ms
5,632 KB |
testcase_35 | AC | 364 ms
5,248 KB |
testcase_36 | AC | 302 ms
5,504 KB |
testcase_37 | AC | 1,115 ms
5,888 KB |
testcase_38 | TLE | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
ソースコード
// Generated by ChatGPT o1-preview (丁寧投げ) #include <iostream> #include <vector> #include <algorithm> using namespace std; const int MAXN = 200005; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N, M; cin >> N >> M; vector<int> A(N + 1); for (int i = 1; i <= N; ++i) { cin >> A[i]; } if (M == 0) { // 全ての部分列が条件を満たす for (int k = 1; k <= N; ++k) { cout << N - k + 1 << "\n"; } return 0; } vector<int> last(M, -1); // last[x]: 数 x の最後の出現位置 vector<int> diff(N + 2, 0); for (int i = 1; i <= N; ++i) { if (A[i] < M) { last[A[i]] = i; } int min_last = INT32_MAX; bool all_present = true; for (int j = 0; j < M; ++j) { if (last[j] == -1) { all_present = false; break; } min_last = min(min_last, last[j]); } if (all_present) { int s_i = i - min_last + 1; diff[s_i] += 1; diff[i + 1] -= 1; } } vector<int> ans(N + 2, 0); for (int k = 1; k <= N; ++k) { ans[k] = ans[k - 1] + diff[k]; cout << ans[k] << "\n"; } return 0; }