# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
88869 | mch | 새로운 문제 (POI13_luk) | C++14 | 197 ms | 13532 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <algorithm>
#include <list>
using namespace std;
bool isEnough(int nCrew, vector<int> arr[], int n){
int max = arr[n].size();
int left = nCrew - max;
// printf("%d %d %d\n", max, left, nCrew);
if(left < 0) return false;
for(int i = 0; i < max; i++){
int k = arr[n][i];
// printf("%d\n", k);
if(!isEnough(nCrew+left, arr, k)) return false;
}
return true;
}
int main(){
vector<int> arr[300001];
int n, from, to;
scanf("%d", &n);
for(int i = 0; i < n-1; i++){
scanf("%d", &from);
scanf("%d", &to);
arr[min(from-1, to-1)].push_back(max(from-1, to-1));
}
int low = 0;
int high = n-1;
while(low <= high){
int mid = (low + high)/2;
if(isEnough(mid, arr, 0)) high = mid - 1;
else low = mid + 1;
}
printf("%d", low);
return 0;
}
컴파일 시 표준 에러 (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... |
# | 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... |