# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
261385 | A02 | 친구 (IOI14_friend) | C++14 | 49 ms | 2680 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "friend.h"
#include <algorithm>
#include <set>
#include <iostream>
#include <vector>
#include <utility>
#include <set>
using namespace std;
int findSample(int n, int confidence[], int host[], int protocol[]){
if (n <= 10){
vector<vector<int> > adjacent (n, vector<int> ());
for (int i = 1; i < n; i++){
int h = host[i];
int p = protocol[i];
if (p == 0){
adjacent[h].push_back(i);
adjacent[i].push_back(h);
}
if (p == 1){
for (int j = 0; j < adjacent[h].size(); j++){
adjacent[adjacent[h][j]].push_back(i);
adjacent[i].push_back(adjacent[h][j]);
}
}
if (p == 2){
for (int j = 0; j < adjacent[h].size(); j++){
adjacent[adjacent[h][j]].push_back(i);
adjacent[i].push_back(adjacent[h][j]);
}
adjacent[h].push_back(i);
adjacent[i].push_back(h);
}
}
int best = 0;
for (int x = 0; x < (1 << n); x++){
vector<int> candidate_set;
for (int j = 0; j < n; j++){
if (x & (1 << j)){
candidate_set.push_back(j);
}
}
bool bad = false;
for (int a = 0; a < candidate_set.size(); a++){
for (int b = a + 1; b < candidate_set.size(); b++){
if (find(adjacent[candidate_set[a]].begin(), adjacent[candidate_set[a]].end(), candidate_set[b]) != adjacent[candidate_set[a]].end()){
bad = true;
}
}
}
if (!bad){
int total = 0;
for (int a = 0; a < candidate_set.size(); a++){
total += confidence[candidate_set[a]];
}
best = max(best, total);
}
}
return best;
}
return 1;
}
컴파일 시 표준 에러 (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... |