# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
426809 | 2021-06-14T10:02:00 Z | Hazem | Simurgh (IOI17_simurgh) | C++14 | 2 ms | 204 KB |
#include "simurgh.h" #include <bits/stdc++.h> using namespace std; int n,m; int vis[10]; vector<int>vec,adj[10],ans; void dfs(int i){ if(vis[i]) return ; vis[i] = 1; for(auto x:adj[i]) dfs(x); } bool check(){ for(int i=0;i<n;i++) vis[i] = 0; dfs(0); bool ret = 1; for(int i=0;i<n;i++) ret &= vis[i]; return ret; } void bt(int idx){ if(vec.size()==n-1){ if(!check()) return ; if(count_common_roads(vec)==n-1) ans = vec; return ; } if(idx==m) return; bt(idx+1); vec.push_back(idx); bt(idx+1); vec.pop_back(); } std::vector<int> find_roads(int n1, std::vector<int> u, std::vector<int> v) { n = n1;m = u.size(); bt(0); return ans; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 204 KB | WA in grader: NO |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 204 KB | WA in grader: NO |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 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 | 2 ms | 204 KB | WA in grader: NO |
2 | Halted | 0 ms | 0 KB | - |