QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#406147 | #6525. New Houses | xiaole | WA | 83ms | 3672kb | C++23 | 993b | 2024-05-06 21:10:33 | 2024-05-06 21:10:33 |
Judging History
answer
#include<bits/stdc++.h>
#define ios ios::sync_with_stdio(0),cin.tie(0),cout.tie(0)
using namespace std;using ll = long long;using PLL = pair<ll,ll>;
const ll MAX = 1e18;const ll MIN = -1e18;const ll INF=0x3f3f3f3f;
const ll Q = 5e5+9;const ll MOD = 1e9 + 7;
struct Edge
{
ll a,b,u;
};
vector<Edge> v;
bool cmp(Edge l,Edge r){
return l.u>r.u;
}
void solve(){
v.clear();
ll n,m;cin>>n>>m;
for (ll i = 1; i <= n; i++)
{
ll o,p;cin>>o>>p;
ll q=(p-o);
v.push_back({o,p,q});
}
sort(v.begin(),v.end(),cmp);
ll cnt=m-n;
ll ans=0;
for (ll i = 0; i < n-2; i++)
{
if(cnt>0 and v[i].u>0){
ans+=v[i].b;cnt--;
}else{
ans+=v[i].a;
}
}
if(cnt>0 and (v[n-1].a+v[n-2].a)<(v[n-1].b+v[n-2].b)){
ans+=v[n-1].b;
ans+=v[n-2].b;
}else{
ans+=v[n-1].a;
ans+=v[n-2].a;
}
cout<<ans<<"\n";
}
int main(){
ios;ll _=1;cin>>_;
while (_--)solve();
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3584kb
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: 83ms
memory: 3672kb
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 4106290713 2653993029 5122532137 5570513606 2031887824 2044500908 1857678917 6815058419 2237593918 6646615756 5638337819 3690874076 5497726904 5513905900 5404435094 4705403467 2411992217 3430587752 5098767681 3921151709 1445672728 2692878616 3833748807 2716183054 1303597953 6464787173 883...
result:
wrong answer 26th numbers differ - expected: '974485573', found: '1303597953'