# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
50809 | 2018-06-13T11:24:01 Z | Just_Solve_The_Problem | 친구 (IOI14_friend) | C++11 | 9 ms | 6692 KB |
#include <bits/stdc++.h> #include "friend.h" using namespace std; #define pb push_back #define sz(s) (int)s.size() #define pii pair < int, int > #define fr first #define sc second #define mk make_pair #define all(s) s.begin(), s.end() const int N = (int)1e5 + 7; const int smN = (int)1e3 + 7; vector < int > gr[N]; int has[smN][smN]; int c[N]; void addedge(int a, int b) { gr[a].pb(b); gr[b].pb(a); has[a][b] = has[b][a] = 1; } int findSample(int n, int confidence[], int host[], int protocol[]){ for (int i = 0; i < n; i++) c[i] = confidence[i]; int ans = 0; for (int i = 1; i < n; i++) { if (protocol[i] == 0 || protocol[i] == 2) { addedge(host[i], i); } if (protocol[i] == 1 || protocol[i] == 2) { for (int to : gr[host[i]]) { addedge(to, i); } } } int mx = 0; for (int i = 0; i < n; i++) { mx = max(mx, c[i]); } return mx; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 2680 KB | Output is correct |
2 | Incorrect | 4 ms | 2680 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 2968 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 9 ms | 6692 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 6692 KB | Output is correct |
2 | Incorrect | 4 ms | 6692 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 6692 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 6692 KB | Output is correct |
2 | Incorrect | 4 ms | 6692 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |