# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
434200 | TLP39 | Painting Squares (IOI20_squares) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "squares.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> adj[512];
void init_adj()
{
for(int i=0;i<512;i++)
{
adj[i].clear();
adj[i].push_back((i<<1)%512);
adj[i].push_back((i<<1)%512+1);
}
}
vector<int> cyc;
stack<int> path;
int appear[1024];
vector<int> labels;
void get_cycle()
{
cyc.clear();
path.push(0);
int temp;
while(!path.empty())
{
if(adj[path.top()].size())
{
temp=adj[path.top()][adj[path.top()].size()-1];
adj[path.top()].pop_back();
path.push(temp);
}
else
{
cyc.push_back(path.top());
path.pop();
}
}
for(int i=0;i<9;i++) labels.push(0);
for(int i=0;i<1024;i++)
{
appear[cyc[cyc.size()-1]+(cyc[cyc.size()-2]&1)]=i;
cyc.pop_back();
labels.push(cyc[cyc.size()-1]&1);
}
}
vector<int> paint(int n) {
labels.clear();
init_adj();
get_cycle();
while(labels.size()>n) labels.pop_back();
labels.push_back(10);
return labels;
}
int find_location(int n, std::vector<int> c) {
if(c[9]==-1)
{
for(int i=0;i<=9;i++) if(c[i]==-1) return n-i;
return -1;
}
int code=0;
for(int i=0;i<=9;i++)
{
code+=c[i]<<(9-i);
}
return appear[code];
}