結果
問題 | No.2930 Larger Mex |
ユーザー | yoniha |
提出日時 | 2024-10-12 16:15:41 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,389 bytes |
コンパイル時間 | 7,441 ms |
コンパイル使用メモリ | 336,360 KB |
実行使用メモリ | 19,072 KB |
最終ジャッジ日時 | 2024-10-12 16:15:55 |
合計ジャッジ時間 | 13,987 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 505 ms
5,248 KB |
testcase_05 | AC | 585 ms
5,248 KB |
testcase_06 | AC | 311 ms
5,248 KB |
testcase_07 | AC | 855 ms
5,248 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; #define all(x) (x).begin(), (x).end() #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rrep(i, n) for(int i = (int)(n - 1); i >= 0; i--) template <typename T> bool chmax(T &a,const T &b){if(a<b){a=b;return true;}return false;} template <typename T> bool chmin(T &a,const T &b){if(a>b){a=b;return true;}return false;} using ll = long long; #define int ll using vi = vector<int>; using vvi = vector<vector<int>>; using vb = vector<bool>; using vvb = vector<vector<bool>>; using vs = vector<string>; using pii = pair<int, int>; // using mint = modint!!!number!!!; signed main(){ int n, m; cin >> n >> m; vi a(n); rep(i, n) cin >> a.at(i); for(int k = 1; k <= n; k++){ int ans = 0; set<int> mex; map<int, int> mp; rep(i, n + 1) mex.insert(i); rep(i, k){ if(mex.contains(a.at(i))) mex.erase(a.at(i)); if(mp.contains(a.at(i))) mp.at(a.at(i))++; else mp.emplace(a.at(i), 1); } if(*mex.begin() >= m) ans++; rep(i, n - k){ if(mex.contains(a.at(k + i))) mex.erase(a.at(k + i)); if(mp.contains(a.at(k + i))) mp.at(a.at(k + i))++; else mp.emplace(a.at(i), 1); if(mp.contains(a.at(i))){ mp.at(a.at(i))--; if(mp.at(a.at(i)) == 0) mex.insert(a.at(i)); } if(*mex.begin() >= m) ans++; } cout << ans << endl; } }