| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 302917 | 8e7 | 카니발 티켓 (IOI20_tickets) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "tickets.h"
#include <iostream>
#include <vector>
#include <algorithm>
#define ll long long
using namespace std;
ll ab(ll a) {
return a > 0 ? a : -a;
}
long long find_maximum(int k, vector<vector<int> > x) {
int n = x.size();
int m = x[0].size();
vector<int> a;
for (int i = 0;i < n;i++) {
a.push_back(x[i][0]);
}
sort(a.begin(), a.end());
//cout << n << ' ' << m;
int med = n % 2 ? a[n / 2][0] : (a[n / 2 - 1][0] + a[n / 2][0]) / 2;
//cout << med << " " << endl;
vector<vector<int> > answer;
ll val = 0;
for (int i = 0; i < n; i++) {
vector<int> row(m);
for (int j = 0; j < m; j++) {
//cout << x[i][j] << " ";
if (j < k) {
row[j] = j;
val += ab(med - x[i][j]);
} else {
row[j] = -1;
}
}
answer.push_back(row);
}
med++;
ll v2 = 0;
for (int j = 0; j < n; j++) {
v2 += ab(med - x[j][0]);
}
allocate_tickets(answer);
return min(val, v2);
}
/*
6 1 1
1
2
3
5
9
10
*/
