結果
問題 | No.2774 Wake up Record 2 |
ユーザー | yuusaan |
提出日時 | 2024-06-01 08:03:32 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 52 ms / 2,000 ms |
コード長 | 751 bytes |
コンパイル時間 | 2,871 ms |
コンパイル使用メモリ | 248,868 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-06 22:55:49 |
合計ジャッジ時間 | 3,882 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 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,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 4 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 15 ms
6,944 KB |
testcase_12 | AC | 9 ms
6,944 KB |
testcase_13 | AC | 31 ms
6,940 KB |
testcase_14 | AC | 48 ms
6,944 KB |
testcase_15 | AC | 47 ms
6,944 KB |
testcase_16 | AC | 48 ms
6,944 KB |
testcase_17 | AC | 52 ms
6,940 KB |
testcase_18 | AC | 31 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int n,k; cin >> n >> k; vector<int> a(n); for(int j = 0; j < n; j++)cin >> a[j]; int r = 1000000000,l = 1; int now; while(r > l){ now = (r + l) / 2; int count = 0; for(int j : a){ if(j <= now)count++; } if(count == k)break; else if(count < k){ l = now + 1; } else{ r = now; } } now = (r + l) / 2; vector<int> ans(0); for(int j = 1; j < n ; j++){ if(a[j-1] <= now && a[j] > now){ ans.push_back(j + 1); } } cout << ans.size() << endl; for(int j : ans)cout << j << " "; cout << endl; return 0; }