QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#421655 | #6525. New Houses | fuyouyufeng# | WA | 91ms | 3660kb | C++20 | 1.8kb | 2024-05-25 23:41:54 | 2024-05-25 23:41:54 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
const int N = 500010;
typedef long long ll;
struct node
{
ll a,b;
ll x;
bool id;
}q[N];
int n,m;
bool fun(struct node x,struct node y)
{
return x.x > y.x;
}
void solve()
{
cin >> n >> m;
for (int i = 1; i <= n; i++)
{
cin >> q[i].a >> q[i].b;
if(q[i].a != q[i].b)
{
if(q[i].a > q[i].b)
{
q[i].id = 0;
}
else
{
q[i].id = 1;
}
}
else
{
q[i].id = 0;
}
q[i].x = max(q[i].a,q[i].b);
}
sort(q + 1,q + 1 + n,fun);
ll sum = 0;
//for(int i = 1;i <= n;i++)cout << q[i].a <<' '<< q[i].b<<' '<<q[i].id<<endl;
int l = 0;
int r = m + 1;
for(int i = 1;i <= n;i++)
{
if(q[i].id == 0)
{
if(i == n && r == m + 1)
{
sum += q[i].b;
break;
}
sum += q[i].x;
r--;
}
else
{
int seng = n - i;
if(r - seng > l + 2)
{
sum += q[i].x;
l += 2;
}
else
{
if(i == n && r == m + 1)
{
sum += q[i].b;
break;
}
for(int j = i;j <= n;j++)sum += q[i].a;
break;
}
}
//cout <<'*'<<sum<<endl;
}
cout << sum<<'\n';
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int t;
cin >> t;
while (t--)
solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3660kb
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: 91ms
memory: 3620kb
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 1611016322 5122532137 7441580628 2031887824 2044500908 1345295010 6815058419 2237593918 6646615756 5638337819 3690874076 5497726904 4593208041 5404435094 4705403467 2411992217 3430587752 5272962325 3921151709 1466967408 2692878616 3833748807 2825163883 974485573 6464787173 1204...
result:
wrong answer 3rd numbers differ - expected: '2653993029', found: '1611016322'