# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
427115 | 2021-06-14T12:29:05 Z | A_D | Simurgh (IOI17_simurgh) | C++14 | 3000 ms | 204 KB |
#include "simurgh.h" #include <bits/stdc++.h> using namespace std; int nn,mm; vector<int> ret; vector<int> vec; vector<int> vec2; void bc(int i) { if(i==mm){ if(vec.size()==nn-1){ vec2=vec; int ans=count_common_roads(vec2); if(ans==nn-1)ret=vec; } return; } vec.push_back(i); bc(i+1); vec.pop_back(); bc(i+1); } vector<int> find_roads(int n,vector<int> u,vector<int> v){ ret.clear();vec.clear(); nn=n; mm=u.size(); bc(0); sort(ret.begin(),ret.end()); return ret; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | WA in grader: NO |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | WA in grader: NO |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | WA in grader: NO |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 204 KB | correct |
2 | Execution timed out | 3092 ms | 204 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | WA in grader: NO |
2 | Halted | 0 ms | 0 KB | - |