QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#141177 | #6525. New Houses | cy1999 | WA | 236ms | 3668kb | C++20 | 936b | 2023-08-17 09:12:53 | 2023-08-17 09:12:55 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
int t,n,m,r1,r2,res;
struct node{
int a,b;
friend bool operator<(node a,node b){
return a.b-a.a<b.b-b.a;
}
}p[500005];
int solve(){
int l=0,r=n;
while(l<r){
int mid=l+r>>1;
if(mid+2*(n-mid)<=m)r=mid;
else l=mid+1;
}
if(2*n-1<=m)return 0;
return l;
}
signed main(){
cin>>t;
while(t--){
cin>>n>>m;r1=r2=0;res=0;
for(int i=1;i<=n;i++){
scanf("%lld%lld",&p[i].a,&p[i].b);
if(p[i].a>p[i].b)r1++;
else r2++;
}
sort(p+1,p+n+1);
int k=solve();
if(r1==1){
for(int i=1;i<=n;i++)res+=p[i].b;
printf("%lld\n",res);
continue;
}
if(r1>=k){
for(int i=1;i<=m;i++)res+=max(p[i].a,p[i].b);
printf("%lld\n",res);
continue;
}
for(int i=1;i<=k;i++)res+=p[i].a;
for(int i=k+1;i<=n;i++)res+=p[i].b;
printf("%lld\n",res);
}
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 3668kb
input:
3 4 5 1 100 100 1 100 1 100 1 2 2 1 10 1 10 2 3 100 50 1 1000
output:
400 2 1050
result:
ok 3 number(s): "400 2 1050"
Test #2:
score: -100
Wrong Answer
time: 236ms
memory: 3608kb
input:
100000 6 11 191141536 365120521 799679686 648574232 102602909 467685128 405440859 796808887 384858152 191995380 433392826 195648471 5 13 831367906 510447872 795639287 575551283 811207605 176441088 240156289 946977042 133416463 721098873 5 5 806744021 699586200 630510306 637827160 49223781 641709297 ...
output:
3247545200 4903099600 2653993029 5122532137 5570513606 2031887824 2044500908 1345295010 6815058419 2791867448 6646615756 5638337819 4286608489 6348512795 5513905900 6247923662 4705403467 3696736998 5864939839 5098767681 5917625120 1271949960 5838590315 6652592012 2409784919 974485573 6464787173 8839...
result:
wrong answer 2nd numbers differ - expected: '4106290713', found: '4903099600'