답안 #61953

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
61953 2018-07-27T06:24:48 Z 김현수(#2139) popa (BOI18_popa) C++11
0 / 100
1000 ms 436 KB
#include<bits/stdc++.h>
#include"popa.h"
using namespace std;

int solve (int N, int *Left, int *Right) {
	for(int i=0;i<N;i++) {
		Left[i] = Right[i] = -1;
	}
	vector<int> S;
	S.push_back(N);
	for(int i=1;i<N;i++) {
		int P = 0;
		while(!S.empty()) {
			int T = S.back();
			if(Right[T] != -1) continue;
			if(query(T, T, T, i)) {
				Right[T] = i;
				break;
			}
			else S.pop_back();
		}
		if(S.empty()) {
			Left[i] = P;
		}
		S.push_back(i);
	}
}

Compilation message

popa.cpp: In function 'int solve(int, int*, int*)':
popa.cpp:27:1: warning: no return statement in function returning non-void [-Wreturn-type]
 }
 ^
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1047 ms 248 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1060 ms 436 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1048 ms 436 KB Time limit exceeded
2 Halted 0 ms 0 KB -