結果
| 問題 |
No.649 ここでちょっとQK!
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-06-20 07:20:01 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 107 ms / 3,000 ms |
| コード長 | 1,578 bytes |
| コンパイル時間 | 2,124 ms |
| コンパイル使用メモリ | 204,200 KB |
| 最終ジャッジ日時 | 2025-01-11 08:28:13 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 32 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:50:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
50 | int q,k; scanf("%d%d",&q,&k);
| ~~~~~^~~~~~~~~~~~~~
main.cpp:54:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
54 | scanf("%d",&type[i]);
| ~~~~~^~~~~~~~~~~~~~~
main.cpp:55:37: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
55 | if(type[i]==1) scanf("%lld",&a[i]);
| ~~~~~^~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);i++)
using namespace std;
using lint=long long;
template<class G>
class Fenwick_tree{
vector<G> a;
public:
Fenwick_tree(){}
Fenwick_tree(int n){ build(n); }
Fenwick_tree(const vector<G>& a){ build(a); }
void build(int n){
a.assign(n,G{});
}
void build(const vector<G>& a){
this->a=a;
for(int i=1;i<a.size();i++) (this->a)[i+(i&-i)-1]+=(this->a)[i-1];
}
void add(int i,const G& val){
for(i++;i<=a.size();i+=i&-i) a[i-1]+=val;
}
G sum(int l,int r)const{
if(l==0){
G res{};
for(;r>0;r-=r&-r) res+=a[r-1];
return res;
}
return sum(0,r)-sum(0,l);
}
int lower_bound(G val)const{
if(val<=G{}) return 0;
int x=0,k;
for(k=1;k<=a.size();k<<=1);
for(k>>=1;k>0;k>>=1) if(x+k<=a.size() && a[x+k-1]<val) val-=a[x+k-1], x+=k;
return x;
}
int upper_bound(G val)const{
if(val<G{}) return 0;
int x=0,k;
for(k=1;k<=a.size();k<<=1);
for(k>>=1;k>0;k>>=1) if(x+k<=a.size() && a[x+k-1]<=val) val-=a[x+k-1], x+=k;
return x;
}
};
int main(){
int q,k; scanf("%d%d",&q,&k);
vector<int> type(q);
vector<lint> a(q);
rep(i,q){
scanf("%d",&type[i]);
if(type[i]==1) scanf("%lld",&a[i]);
}
vector<lint> X=a;
sort(X.begin(),X.end());
X.erase(unique(X.begin(),X.end()),X.end());
rep(i,q) a[i]=lower_bound(X.begin(),X.end(),a[i])-X.begin();
Fenwick_tree<int> F(X.size());
rep(i,q){
if(type[i]==1){
F.add(a[i],1);
}
else{
int res=F.lower_bound(k);
if(res<X.size()){
printf("%lld\n",X[res]);
F.add(res,-1);
}
else puts("-1");
}
}
return 0;
}