# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
376685 | wiwiho | Cake 3 (JOI19_cake3) | C++14 | 4050 ms | 6268 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define mp make_pair
#define F first
#define S second
#define iter(a) a.begin(), a.end()
#define lsort(a) sort(iter(a))
#define printv(a, b) { \
for(auto pv : a) b << pv << " "; \
b << "\n"; \
}
using namespace std;
typedef long long ll;
using pll = pair<ll, ll>;
ostream& operator<<(ostream& o, pll p){
return o << '(' << p.F << ',' << p.S << ')';
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
int n, m;
cin >> n >> m;
vector<pll> a(n + 1);
for(int i = 1; i <= n; i++){
cin >> a[i].S >> a[i].F;
}
lsort(a);
//printv(a, cerr);
ll ans = -(1LL << 60);
for(int i = 1; i <= n; i++){
multiset<ll> st;
ll sum = 0;
for(int j = i; j <= n; j++){
ll c = a[j].F, v = a[j].S;
sum += v;
st.insert(v);
while(st.size() > m){
sum -= *st.begin();
st.erase(st.begin());
}
//cerr << i << " " << j << " ";
//printv(st, cerr);
if(st.size() == m) ans = max(ans, sum - 2 * (c - a[i].F));
}
}
cout << ans << "\n";
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |