이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "friend.h"
using namespace std;
int findSample(int n, int confidence[], int host[], int protocol[]) {
int p = protocol[1];
bool st234 = true;
for (int idx=2; idx<n; idx++) {
if (protocol[idx] != p) {
st234=false;
break;
}
}
if (st234) {
// subtasks 2, 3, 4
if (p==0) { // IAmYourFriend, st4
// just get all pairs by host and host index
int res = 0;
for (int guest=1; guest<n; guest++) {
res = max(res, confidence[host[guest]] + confidence[guest] );
}
return res;
} else if (p==1) { // MyFriendsAreYourFriends, st2
// nobody is freinds lol, just get max
int res = 0;
for (int person=0; person<n; person++) {
res = max(res, confidence[person]);
}
return res;
} else if (p==2) { // WeAreYourFriends, st3
// it's just all of them summed up
int res = 0;
for (int person=0; person<n; person++) {
res += confidence[person];
}
return res;
} else {
// smtg weird
return -1;
}
} else {
// do whole graph with all. st1 or st5 (or unsolved st6)
return 0; // TODO
}
}
# | 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... |