이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define ff first
#define ss second
const int N=200000;
ll n,k;
vector<pair<ll,ll>>cards;
int binary(ll low, ll mid, ll hi, ll val){
while(low!=mid){
cout<<low<<" "<<mid<<" "<<hi<<" LO MID HI1"<<endl;
if(cards[mid].ff<=val){
low=mid;
mid=(low+hi+1)/2;
}else{
hi=mid;
mid=(low+hi)/2;
}
//cout<<low<<" "<<mid<<" "<<hi<<" LO MID HI2"<<endl;
}
//cout<<"a"<<endl;
return mid;
}
int main(){
cin >> n >> k;
for(ll i=0;i<n;i++){
ll a,b; cin>>a>>b;
cards.pb({a,b});
}
for(ll i=0;i<k;i++){
sort(cards.begin(),cards.end());
ll t; cin >> t;
ll indi=binary(0,((n-1)/2),n-1,t);
for(ll j=0;j<=indi;j++){
swap(cards[j].ff,cards[j].ss);
}
}
ll sum=0;
for(ll x=0;x<n;x++){
sum+=cards[x].ff;
}
cout<<sum<<endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |