# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
975403 | LucaIlie | 자동 인형 (IOI18_doll) | C++17 | 61 ms | 13940 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "doll.h"
#include <bits/stdc++.h>
using namespace std;
const int MAX_M = 1e5;
const int MAX_L = (1 << 17);
int ord[MAX_L];
vector<int> adj[MAX_M + 1];
int switchid( int x ) {
return -(x + 1);
}
void create_circuit( int m, vector<int> a ) {
int n = a.size();
vector<int> c( m + 1 ), x, y;
a.push_back( 0 );
reverse( a.begin(), a.end() );
a.push_back( 0 );
reverse( a.begin(), a.end() );
for ( int i = 0; i < a.size() - 1; i++ )
adj[a[i]].push_back( a[i + 1] );
for ( int i = 0; i <= m; i++ ) {
if ( adj[i].size() == 0 )
continue;
if ( adj[i].size() == 1 ) {
c[i] = adj[i][0];
continue;
}
int p = ceil( log2( adj[i].size() ) );
int r = x.size();
x.resize( r + (1 << p) - 1 );
y.resize( r + (1 << p) - 1 );
c[i] = switchid( r );
for ( int v = 0; v < (1 << (p - 1)) - 1; v++ ) {
x[r + v] = switchid( r + v * 2 + 1 );
y[r + v] = switchid( r + v * 2 + 2 );
}
for ( int a = 0; a < (1 << p); a++ ) {
int c = 0;
for ( int b = 0; b < p; b++ ) {
if ( (a >> b) & 1 )
c += (1 << (p - 1 - b));
}
ord[c] = a;
}
int ind = 0;
for ( int j = 0; j < (1 << p); j++ ) {
int a = ord[j];
int v = r + (1 << (p - 1)) - 1 + a / 2;
if ( j + 1 + adj[i].size() <= (1 << p) ) {
if ( a % 2 == 0 )
x[v] = switchid( r );
else
y[v] = switchid( r );
} else {
if ( a % 2 == 0 )
x[v] = adj[i][ind];
else
y[v] = adj[i][ind];
ind++;
}
}
}
answer( c, x, y );
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |