| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 38914 | funcsr | Memory 2 (JOI16_memory2) | C++14 | 0 ms | 2032 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Memory2_lib.h"
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <set>
#include <cassert>
#include <random>
#include <map>
#include <ctime>
using namespace std;
typedef pair<int, int> P;
#define rep(i, n) for (int i=0; i<(n); i++)
#define all(x) x.begin(), x.end()
#define uniq(x) x.erase(unique(all(x)), x.end())
#define index(x, y) (int)(lower_bound(all(x), y) - x.begin())
#define pb push_back
#define _1 first
#define _2 second
#define INF 1145141919
#define MOD 1000000007
int get_min_pos(vector<int> pos, int N) {
rep(i, pos.size()) rep(j, i) {
if (Flip(pos[i], pos[j]) == N-1) return pos[i];
}
return -1;
}
mt19937 mt_rand(time(NULL));
vector<int> G[50];
int A[100];
int V[100];
void Solve(int T, int N) {
rep(i, 2*N) A[i] = -1;
if (T == 3) abort();
vector<int> pos;
rep(i, 2*N) pos.pb(i);
while (pos.size() > 2) {
int p = pos[mt_rand()%pos.size()];
int mx = -1;
map<int, int> cnt;
for (int x : pos) if (x != p) {
int v = Flip(x, p);
V[x] = v;
mx = max(mx, v);
cnt[v]++;
}
vector<int> npos;
npos.pb(p);
for (int x : pos) if (x != p) {
if (V[x] < mx) A[x] = V[x];
else npos.pb(x);
}
swap(npos, pos);
}
int min_pos = get_min_pos(pos, N);
assert(min_pos != -1);
for (int i : pos) {
int a = N-1;
if (i != min_pos) a = Flip(i, min_pos);
A[i] = a;
}
rep(i, 2*N) G[A[i]].pb(i);
rep(i, N) assert(G[i].size() == 2);
rep(i, N) Answer(G[i][0], G[i][1], i);
}
컴파일 시 표준 에러 (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... | ||||
