QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#425880 | #6525. New Houses | yukino | WA | 98ms | 3876kb | C++17 | 795b | 2024-05-30 18:27:03 | 2024-05-30 18:27:05 |
Judging History
answer
#include<bits/stdc++.h>
#define ll long long
#define int ll
const int N=1e5+10;
using namespace std;
void solve()
{
int n,m;
cin>>n>>m;
vector<int>a(n+1),b(n+1),c;
int ans=0;
int num=0;
for(int i=0;i<n;i++)
{
cin>>a[i]>>b[i];
if(b[i]-a[i]>0)
c.push_back(b[i]-a[i]);
ans+=a[i];
num+=b[i];
}
sort(c.begin(),c.end(),greater<int>());
int tp=ans;
for(int i=0;i<min(m-n,(ll)c.size());i++)
{
if(i==n-2)
break;
tp+=c[i];
}
if(m-n>=n-1)
tp=max(tp,num);
ans=max(ans,tp);
cout<<ans<<"\n";
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int t=1;
cin>>t;
while(t--)
{
solve();
}
}
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 3876kb
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: 98ms
memory: 3652kb
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 974485573 6464787173 8839...
result:
wrong answer 51st numbers differ - expected: '755018141', found: '956338726'