# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
520902 | peti1234 | 친구 (IOI14_friend) | C++17 | 1 ms | 312 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int findSample(int n, int con[], int h[], int p[]) {
// 1
if (n<=10) {
bool el[10][10];
for (int i=0; i<10; i++) {
for (int j=0; j<10; j++) {
el[i][j]=0;
}
}
for (int i=1; i<n-1; i++) {
if (p[i]==1 || p[i]==3) {
el[i][h[i]]=1, el[h[i]][i]=1;
}
if (p[i]==2 || p[i]==3) {
for (int j=0; j<n; j++) {
if (el[j][h[i]]) {
el[i][j]=1, el[j][i]=1;
}
}
}
}
int valasz=0;
for (int mask=0; mask<(1<<n); mask++) {
int ert=0;
for (int i=0; i<n; i++) {
if (mask & (1<<i)) {
ert+=con[i];
}
}
bool jo=1;
for (int i=0; i<n; i++) {
for (int j=0; j<n; j++) {
if ((mask & (1<<i)) && (mask & (1<<j)) && el[i][j]) {
jo=0;
}
}
}
if (jo) {
valasz=max(valasz, ert);
}
}
return valasz;
}
// 2
if (p[1]==2) {
int valasz=0;
for (int i=0; i<n; i++) {
valasz=max(valasz, con[i]);
}
return valasz;
}
// 3
if (p[1]==3) {
int valasz=0;
for (int i=0; i<n; i++) {
valasz+=con[i];
}
return valasz;
}
}
컴파일 시 표준 에러 (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... |