# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
381926 | Iwanttobreakfree | Painting Squares (IOI20_squares) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "squares.h"
#include <vector>
using namespace std;
vector<int> guardado;
vector<int> paint(int n) {
guardado.clear();
vector<int> potencias(10);
potencias[9]=1;
for(int i=8;i>=0;i--)potencias[i]=potencias[i+1]*2;
int num=1;
int cont=0;
while(labels.size()!=n){
if(num>=potencias[cont]){
num-=potencias[cont];
labels.push_back(1);
guardado.push_back(1);
}
else{
labels.push_back(0);
guardado.push_back(0);
}
cont++;
if(cont==10){
num+=2;
cont=0;
}
}
labels.push_back(30);
return labels;
}
int find_location(int n, vector<int> c) {
bool posi;
for(int i=0;i<guardado.size()-n;i++){
posi=true;
for(int j=0;j<n;j++){
if(c[j]==-1){
int tot=guardado.size();
return tot-n+j;
}
if(guardado[i+j]!=c[j]){
pos=false;
break;
}
}
if(posi)return i;
}
}