# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
788023 | ymm | 저울 (IOI15_scales) | C++17 | 36 ms | 424 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scales.h"
#include <bits/stdc++.h>
#define Loop(x,l,r) for (int x = (l); x < (r); ++x)
using namespace std;
typedef array<int, 6> perm;
int whichval3(int *v, int x) {
return (v[1] == x) + 2*(v[2] == x);
}
tuple<int,int,int> srt(const perm &p, int a, int b, int c) {
if (p[a] > p[b]) swap(a, b);
if (p[b] > p[c]) swap(b, c);
if (p[a] > p[b]) swap(a, b);
return {a, b, c};
}
int mn(const perm &p, int *v) {
auto [x, y, z] = srt(p, v[0], v[1], v[2]);
return whichval3(v, x);
}
int mx(const perm &p, int *v) {
auto [x, y, z] = srt(p, v[0], v[1], v[2]);
return whichval3(v, z);
}
int med(const perm &p, int *v) {
auto [x, y, z] = srt(p, v[0], v[1], v[2]);
return whichval3(v, y);
}
int nxt(const perm &p, int *v) {
auto [x, y, z] = srt(p, v[0], v[1], v[2]);
if (p[v[3]] < p[x]) return whichval3(v, x);
if (p[v[3]] < p[y]) return whichval3(v, y);
if (p[v[3]] < p[z]) return whichval3(v, z);
return whichval3(v, x);
}
vector<vector<int>> sel3;
vector<vector<int>> sel4;
vector<perm> perms;
template<int (*f)(int, int, int)> int f3(int *v) { return f(v[0]+1, v[1]+1, v[2]+1)-1; }
template<int (*f)(int, int, int, int)> int f4(int *v) { return f(v[0]+1, v[1]+1, v[2]+1, v[3]+1)-1; }
int (*f2q(int (*f)(const perm &, int *)))(int *) {
if (f == mn) return f3<getLightest>;
if (f == mx) return f3<getHeaviest>;
if (f == med) return f3<getMedian>;
if (f == nxt) return f4<getNextLightest>;
return NULL;
}
perm solve(const vector<perm> &ps)
{
if (ps.size() == 1)
return ps[0];
tuple<int, array<vector<perm>, 3>, int (*)(int *), int *> ch;
get<0>(ch) = INT_MAX;
for (auto f : {nxt, med, mn, mx}) {
auto &selx = f == nxt? sel4: sel3;
for (auto &sel : selx) {
array<vector<perm>, 3> vec;
for (const auto &p : ps)
vec[f(p, sel.data())].push_back(p);
int x = max({vec[0].size(), vec[1].size(), vec[2].size()});
if (x < get<0>(ch))
ch = {x, vec, f2q(f), sel.data()};
}
}
auto [_, chvec, chf, chin] = ch;
int x = chf(chin);
int i = whichval3(chin, x);
return solve(chvec[i]);
}
void init(int T) {
Loop (i,0,6) Loop (j,i+1,6) Loop (k,j+1,6)
sel3.push_back({i, j, k});
Loop (d,0,6) Loop (i,0,6) Loop (j,i+1,6) Loop (k,j+1,6) {
if (i != d && j != d && k != d)
sel4.push_back({i, j, k, d});
}
perm p = {0, 1, 2, 3, 4, 5};
do {
perms.push_back(p);
} while (next_permutation(p.begin(), p.end()));
}
void orderCoins() {
auto ans = solve(perms);
int w[6];
Loop (i,0,6)
w[ans[i]] = i+1;
answer(w);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |