結果
問題 | No.649 ここでちょっとQK! |
ユーザー | latte0119 |
提出日時 | 2018-02-09 23:07:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 112 ms / 3,000 ms |
コード長 | 1,579 bytes |
コンパイル時間 | 1,873 ms |
コンパイル使用メモリ | 165,232 KB |
実行使用メモリ | 10,068 KB |
最終ジャッジ日時 | 2024-10-08 18:12:27 |
合計ジャッジ時間 | 4,990 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 79 ms
6,528 KB |
testcase_04 | AC | 79 ms
9,944 KB |
testcase_05 | AC | 78 ms
9,884 KB |
testcase_06 | AC | 73 ms
10,068 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 4 ms
5,248 KB |
testcase_11 | AC | 3 ms
5,248 KB |
testcase_12 | AC | 56 ms
7,364 KB |
testcase_13 | AC | 56 ms
7,364 KB |
testcase_14 | AC | 56 ms
7,620 KB |
testcase_15 | AC | 56 ms
7,624 KB |
testcase_16 | AC | 56 ms
7,620 KB |
testcase_17 | AC | 60 ms
7,616 KB |
testcase_18 | AC | 66 ms
7,748 KB |
testcase_19 | AC | 73 ms
8,260 KB |
testcase_20 | AC | 77 ms
8,516 KB |
testcase_21 | AC | 83 ms
8,624 KB |
testcase_22 | AC | 90 ms
8,888 KB |
testcase_23 | AC | 97 ms
8,884 KB |
testcase_24 | AC | 103 ms
9,144 KB |
testcase_25 | AC | 106 ms
9,652 KB |
testcase_26 | AC | 112 ms
9,736 KB |
testcase_27 | AC | 3 ms
5,248 KB |
testcase_28 | AC | 3 ms
5,248 KB |
testcase_29 | AC | 3 ms
5,248 KB |
testcase_30 | AC | 48 ms
7,492 KB |
testcase_31 | AC | 48 ms
7,492 KB |
testcase_32 | AC | 3 ms
5,248 KB |
testcase_33 | AC | 3 ms
5,248 KB |
testcase_34 | AC | 3 ms
5,248 KB |
testcase_35 | AC | 3 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:38:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 38 | scanf("%lld%lld",&Q,&K); | ~~~~~^~~~~~~~~~~~~~~~~~ main.cpp:41:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 41 | scanf("%lld",&T[i]); | ~~~~~^~~~~~~~~~~~~~ main.cpp:43:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 43 | scanf("%lld",&A[i]); | ~~~~~^~~~~~~~~~~~~~
ソースコード
#include<bits/stdc++.h> using namespace std; #define int long long #define rep(i,n) for(int i=0;i<(n);i++) #define pb push_back #define all(v) (v).begin(),(v).end() #define fi first #define se second typedef vector<int>vint; typedef pair<int,int>pint; typedef vector<pint>vpint; template<typename A,typename B>inline void chmin(A &a,B b){if(a>b)a=b;} template<typename A,typename B>inline void chmax(A &a,B b){if(a<b)a=b;} struct BinaryIndexedTree{ int n; vector<int>dat; BinaryIndexedTree(int n=0):n(n){ dat.resize(n+1); } void add(int k,int x){ for(k++;k<=n;k+=k&-k)dat[k]+=x; } int sum(int k){ int ret=0; for(k++;k;k-=k&-k)ret+=dat[k]; return ret; } }; int Q,K; int T[222222],A[222222]; signed main(){ scanf("%lld%lld",&Q,&K); vint latte; rep(i,Q){ scanf("%lld",&T[i]); if(T[i]==1){ scanf("%lld",&A[i]); latte.pb(A[i]); } } sort(all(latte));latte.erase(unique(all(latte)),latte.end()); BinaryIndexedTree bit(222222); rep(i,Q){ if(T[i]==1){ A[i]=lower_bound(all(latte),A[i])-latte.begin(); bit.add(A[i],1); } else{ int lb=-1,ub=222222; while(ub-lb>1){ int mid=(ub+lb)/2; if(bit.sum(mid)<K)lb=mid; else ub=mid; } if(ub==222222)puts("-1"); else{ printf("%lld\n",latte[ub]); bit.add(ub,-1); } } } return 0; }