# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
42947 | 2018-03-06T19:34:30 Z | MatheusLealV | Simurgh (IOI17_simurgh) | C++14 | 5 ms | 464 KB |
#include <bits/stdc++.h> #include "simurgh.h" using namespace std; int n, m; vector<int> find_roads(int n_, vector<int> u, vector<int> v) { n = n_; m = u.size(); for(int mask = 0; mask < (1<<m); mask ++) { vector<int> aux; for(int i = 0; i < m; i++) { if(mask & (1<<i)) { aux.push_back(i); } } if(aux.size() == n - 1 && count_common_roads(aux)) return aux; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | WA in grader: NO |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | WA in grader: NO |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | WA in grader: NO |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | correct |
2 | Incorrect | 5 ms | 464 KB | WA in grader: NO |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | WA in grader: NO |
2 | Halted | 0 ms | 0 KB | - |