# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
319293 | northlake | 카니발 티켓 (IOI20_tickets) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<tickets.h>
#include<bits/stdc++.h>
using namespace std;
long long find_maximum(int k, vector<vector<int>> x) {
int n = x.size();
vector<vector<int>> s {x};
for (auto& e1 : s) {
for (auto& e2 : e1) e2 = -1;
}
vector<pair<int,int>> min_values;
vector<pair<int,int>> max_values;
for (int i = 0; i < n; i++) {
vector<int> el = x[i];
int minx = pow(10,9);
int maxx = 0;
for (auto e : el) {
minx = min(minx, e);
maxx = max(maxx, e);
}
min_values.push_back(make_pair(minx, i));
max_values.push_back(make_pair(maxx, i));
}
sort(min_values.begin(), min_values.end());
sort(max_values.rbegin(), max_values.rend());
vector<int> values;
bool taken[n] = {false};
for (int i = 0; i < n; i++) {
pair<int,int> small = min_values[i];
pair<int,int> big = max_values[i];
if (taken[small.second] && taken[big.second]) {
continue;
}
else if (taken[small.second]) {
values.push_back(big.first);
taken[big.second] = true;
s[big.second][find_in_x(x, big.second, big.first)] = 0;
}
else if (taken[big.second]) {
values.push_back(small.first);
taken[small.second] = true;
s[small.second][find_in_x(x, small.second, small.first)] = 0;
}
else if (small.second == big.second) {
values.push_back(small.first);
taken[small.second] = true;
s[small.second][find_in_x(x, small.second, small.first)] = 0;
}
else {
values.push_back(small.first);
values.push_back(big.first);
taken[big.second] = true;
taken[small.second] = true;
s[big.second][find_in_x(x, big.second, big.first)] = 0;
s[small.second][find_in_x(x, small.second, small.first)] = 0;
}
}
sort(values.begin(), values.end());
int optimal_value = values[n/2];
long long result = 0ll;
for (auto el : x) {
result += static_cast<long long>(abs(optimal_value-el[0]));
}
allocate_tickets(s);
return result;
}