結果

問題 No.2774 Wake up Record 2
ユーザー VvyLwVvyLw
提出日時 2024-06-07 21:57:34
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 1,015 bytes
コンパイル時間 1,124 ms
コンパイル使用メモリ 120,928 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-07 21:57:37
合計ジャッジ時間 2,241 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 15 ms
6,940 KB
testcase_12 AC 10 ms
6,940 KB
testcase_13 AC 31 ms
6,940 KB
testcase_14 AC 49 ms
6,940 KB
testcase_15 AC 46 ms
6,944 KB
testcase_16 AC 48 ms
6,940 KB
testcase_17 AC 49 ms
6,940 KB
testcase_18 AC 31 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <ranges>
constexpr int INF = 1 << 30;
int main() {
    int n, k, ok, ng;
    std::cin >> n >> k;
    std::vector<int> a(n), ans;
    for(auto &e: a) {
        std::cin >> e;
    }
    ok = INF;
    ng = -1;
    while(std::abs(ok - ng) > 1) {
        const int mid = (ok + ng) / 2;
        int cnt = 0;
        for(const auto &e: a) {
            if(e <= mid) {
                cnt++;
            }
        }
        if(cnt >= k) {
            ok = mid;
        } else {
            ng = mid;
        }
    }
    bool in = true;
    for(int i = 0; i < n; ++i) {
        if(in && a[i] > ok) {
            ans.emplace_back(i + 1);
            in = false;
        } else if(a[i] <= ok) {
            in = true;
        }
    }
    const int m = std::ssize(ans);
    std::cout << m << '\n';
    if(m == 0) {
        std::cout << '\n';
    } else {
        for(int i = 0; i < m; ++i) {
            std::cout << ans[i] << " \n"[i + 1 == m];
        }
    }
}
0