# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
199664 | mathking1021 | Memory 2 (JOI16_memory2) | C++11 | 5 ms | 256 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Memory2_lib.h"
#include <algorithm>
#include <vector>
using namespace std;
int a[105];
bool v[105];
vector<int> ve[105];
vector<int> ans[105];
void Solve(int T, int N)
{
int n = N;
for(int i = 0; i < 2 * n; i++)
{
int j;
int x;
if(v[i]) continue;
for(j = 0; j < n; j++) ve[j].clear();
for(j = i + 1; j < 2 * n; j++)
{
if(v[j]) continue;
int t = Flip(i, j);
ve[t].push_back(j);
ans[t].push_back(j);
if(ve[t].size() > 2) {x = t;break;}
}
if(j == 2 * n)
{
for(j = 0; j < n; j++)
{
if(ans[j].size() < 2) ans[j].push_back(i);
Answer(ans[j][0], ans[j][1], j);
}
return;
}
ans[x].push_back(i);
v[i] = true;
for(j = 0; j < n; j++)
{
if(j == x) continue;
for(int k = 0; k < ve[j].size(); k++)
{
v[ve[j][k]] = true;
}
}
}
for(int i = 0; i < n; i++)
{
Answer(ans[i][0], ans[i][1], i);
}
return;
}
컴파일 시 표준 에러 (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... |