結果

問題 No.2774 Wake up Record 2
ユーザー KeiKei
提出日時 2024-06-07 21:53:07
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 820 bytes
コンパイル時間 3,667 ms
コンパイル使用メモリ 277,520 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 21:53:19
合計ジャッジ時間 4,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main() {
  int N, K;
  cin >> N >> K;
  vector<int> A(N);
  for (int i = 0; i < N; i++) {
    cin >> A[i];
  }
  int L = 0, R = (int)1e9 + 10;
  while (R - L > 1) {
    int mid = (L + R) / 2;
    long long tmp = 0;
    for (int i = 0; i < N; i++) {
      if (A[i] <= mid) {
        tmp++;
      }
    }
    if (tmp < K) {
      L = mid;
    } else {
      R = mid;
    }
  }
  vector<int> B;
  string S;
  for (int i = 0; i < N; i++) {
    if (A[i] <= R) {
      S.push_back('x');
    } else {
      S.push_back('o');
    }
  }
  A.clear();
  for (int i = 1; i <= N; i++) {
    if (S[i - 1] == 'x' && S[i] == 'o') {
      A.push_back(i + 1);
    }
  }
  int M = A.size();
  cout << M << endl;
  for (int i = 0; i < M; i++) {
    cout << A[i] << ' ';
  }
  cout << endl;
}
0