QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#421642 | #6525. New Houses | fuyouyufeng# | WA | 88ms | 3804kb | C++20 | 1.2kb | 2024-05-25 23:23:33 | 2024-05-25 23:23:34 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
const int N = 500010;
#define int long long
typedef pair<int, int> PII;
PII e[N];
#define x first
#define y second
bool cmp(PII a, PII b)
{
if (a.y < b.y)
return true;
else if (a.y == b.y)
return a.x > b.x;
}
void solve()
{
int n, m;
cin >> n >> m;
vector<int> s(n + 1, 0);
for (int i = 1; i <= n; i++)
cin >> e[i].x >> e[i].y;
sort(e + 1, e + 1 + n, cmp);
for (int i = 1; i <= n; i++)
s[i] = s[i - 1] + e[i].x;
int ans = s[n];
if (m == n)
{
cout << ans << '\n';
return;
}
int vis = 0;
for (int i = n, j = 1; i >= 1, j <= n; i--, j++)
{
vis += e[i].y;
if (j == n - 1)
{
vis += e[1].y;
if (j * 2 <= m + 1)
ans = max(ans, vis);
break;
}
if (i == 1 && j * 2 <= m + 1)
ans = max(ans, s[i - 1] + vis);
else if (i - 1 + j * 2 <= m)
ans = max(ans, s[i - 1] + vis);
}
cout << ans << '\n';
}
signed 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: 3636kb
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: 88ms
memory: 3804kb
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:
3096439746 4106290713 2653993029 4724773633 5570513606 2031887824 2044500908 1857678917 6552275811 2237593918 6479042694 5393412666 3690874076 4645933281 5513905900 5404435094 4625221664 2411992217 3091791968 4894613913 3865497483 1303747744 2692878616 3731100086 2716183054 850381192 5824182509 8839...
result:
wrong answer 1st numbers differ - expected: '3247545200', found: '3096439746'