# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
427079 | 2021-06-14T12:11:36 Z | A_D | Simurgh (IOI17_simurgh) | C++14 | 1 ms | 292 KB |
#include "simurgh.h" #include <bits/stdc++.h> using namespace std; int nn,mm; vector<int> ret; vector<int> vec; void bc(int i) { // cout<<i<<endl; if(vec.size()>mm){ return; } if(i==nn){ if(vec.size()==mm){ int ans=count_common_roads(vec); if(ans==mm)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){ nn=u.size(); mm=N-1; bc(0); 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 | Incorrect | 1 ms | 292 KB | WA in grader: NO |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | WA in grader: NO |
2 | Halted | 0 ms | 0 KB | - |