# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
61957 | 2018-07-27T06:28:52 Z | 김현수(#2139) | popa (BOI18_popa) | C++11 | 16 ms | 516 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(0); for(int i=1;i<N;i++) { int T; while(!S.empty()) { T = S.back(); if(Right[T] == -1 && query(T, T, T, i)) { Right[T] = i; break; } else S.pop_back(); } if(S.empty()) { Left[i] = T; } S.push_back(i); } return S[0]; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 384 KB | not a valid solution |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 9 ms | 384 KB | not a valid solution |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 16 ms | 516 KB | not a valid solution |
2 | Halted | 0 ms | 0 KB | - |