QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#696261 | #6525. New Houses | jiangXxin | WA | 120ms | 3780kb | C++20 | 2.3kb | 2024-10-31 21:58:40 | 2024-10-31 21:58:40 |
Judging History
answer
// Problem: D. New Houses
// Contest: Codeforces - The 2023 Guangdong Provincial Collegiate Programming Contest
// URL: https://codeforces.com/gym/104369/problem/D
// Memory Limit: 1024 MB
// Time Limit: 1000 ms
//
// Powered by CP Editor (https://cpeditor.org)
/*
/\__/\
(o o)
/ \
// ^ ^ \\
/// \\\
\ /
\____/
/\_ _/\
*/
#include<bits/stdc++.h>
#define fir first
#define sec second
#define pb push_back
#define lowbit(X) X&(-X)
#define sz(X) (int)(X).size()
#define all(X) (X).begin(),(X).end()
#define YES cout<<"YES"<<'\n'
#define Yes cout<<"Yes"<<'\n'
#define NO cout<<"NO"<<'\n'
#define No cout<<"No"<<'\n'
#define error cout<<"-1"<<'\n'
using namespace std;
typedef long long unt;
typedef long double ld;
typedef vector<int> vt_int;
typedef vector<char> vt_char;
typedef vector<bool> vt_bool;
typedef vector<long long> vt_unt;
typedef vector<long double> vt_ld;
typedef vector<vector<int> > vvt_int;
typedef vector<vector<char> > vvt_char;
typedef vector<vector<bool> > vvt_bool;
typedef vector<vector<long long> > vvt_unt;
typedef vector<vector<long double> > vvt_ld;
const long long mod=1e9+7;
const long long INF=1152921504606846976;//(2^60)
const long long N=110000;
int solve(){
unt n,m;
cin>>n>>m;
vt_unt d(n);
vt_unt a(n),b(n);
unt ans=0;
for(int i=0;i<n;i++){
cin>>a[i]>>b[i];
d[i]=b[i]-a[i];
ans+=a[i];
}
if(n==1){
cout<<b[0]<<endl;
return 0;
}
sort(all(d));
reverse(all(d));
if(m==3){
if(n==2){
ans=max(ans,b[0]+b[1]);
cout<<ans<<endl;
return 0;
}
if(n==3){
cout<<ans<<endl;
return 0;
}
if(n==1){
cout<<b[0]<<endl;
return 0;
}
}
if(2*n-1<=m){
unt res=0;
for(int i=0;i<n;i++){
res+=b[i];
}
ans=max(ans,res);
}
unt cnt=0;
for(auto e:d){
if(e<=0)break;
cnt++;
if(cnt==n-2)break;
unt need=2*cnt+(n-cnt);
if(need<=m){
ans+=e;
}
else{
break;
}
}
cout<<ans<<endl;
return 0;
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int testcase;
testcase=1;
cin>>testcase;
while(testcase--){
int flag=solve();
if(flag==1) YES;
if(flag==-1) NO;
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3780kb
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: 120ms
memory: 3560kb
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:
3596261851 4225019321 2653993029 5356045025 5570513606 2844215337 2044500908 1885055191 6815058419 2237593918 6646615756 5638337819 3690874076 6055195609 5513905900 5404435094 4705403467 2411992217 4324806825 5098767681 3921151709 1564890252 2527139229 3833748807 3120110917 974485573 6917462147 8839...
result:
wrong answer 1st numbers differ - expected: '3247545200', found: '3596261851'