# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
293501 | Badrangiikh | 친구 (IOI14_friend) | C++14 | 333 ms | 65540 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int x , y , a [ 45 ] , b [ 15 ] [ 15 ] , maxx , flag ;
vector < int > vec [ 1005 ] ;
int findSample ( int N , int confidence[] , int host[] , int protocol[] ) {
if ( N <= 10 ) {
maxx = 0 ;
for ( int i = 1 ; i < N ; i ++ ) {
if ( protocol [ i ] == 0 ) {
vec [ i ] . push_back ( host [ i ] ) ;
vec [ host [ i ] ] . push_back ( i ) ;
b [ i ] [ host [ i ] ] = 1 ;
b [ host [ i ] ] [ i ] = 1 ;
}
if ( protocol [ i ] == 1 ) {
for ( int j = 0 ; j < vec [ host [ i ] ] . size ( ) ; j ++ ) {
vec [ i ] . push_back ( vec [ host [ i ] ] [ j ] ) ;
vec [ host [ i ] ] . push_back ( i ) ;
b [ i ] [ vec [ host [ i ] ] [ j ] ] = 1 ;
b [ vec [ host [ i ] ] [ j ] ] [ i ] = 1 ;
}
}
if ( protocol [ i ] == 2 ) {
for ( int j = 0 ; j < vec [ host [ i ] ] . size ( ) ; j ++ ) {
vec [ i ] . push_back ( vec [ host [ i ] ] [ j ] ) ;
vec [ host [ i ] ] . push_back ( i ) ;
b [ i ] [ vec [ host [ i ] ] [ j ] ] = 1 ;
b [ vec [ host [ i ] ] [ j ] ] [ i ] = 1 ;
}
vec [ i ] . push_back ( host [ i ] ) ;
vec [ host [ i ] ] . push_back ( i ) ;
b [ i ] [ host [ i ] ] = 1 ;
b [ host [ i ] ] [ i ] = 1 ;
}
}
for ( int i = 1 ; i < 1024 ; i ++ ) {
x = i ;
y = 0 ;
flag = true ;
for ( int j = 0 ; j < N ; j ++ ) {
a [ j ] = x % 2 ;
x /= 2 ;
if ( a [ j ] == 1 ) {
y += confidence [ j ] ;
}
}
for ( int j = 0 ; j < N ; j ++ ) {
for ( int l = 0 ; l < N ; l ++ ) {
if ( a [ j ] + a [ l ] == 2 ) {
if ( b [ j ] [ l ] == 1 ) {
flag = false ;
}
}
}
}
if ( flag == true ) {
maxx = max ( maxx , y ) ;
}
}
return maxx ;
}
}
컴파일 시 표준 에러 (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... |