이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
#define ff first
#define ss second
#define pb push_back
#define all(a) (a).begin(), (a).end()
#define replr(i, a, b) for (int i = int(a); i <= int(b); ++i)
#define reprl(i, a, b) for (int i = int(a); i >= int(b); --i)
#define rep(i, n) for (int i = 0; i < int(n); ++i)
#define mkp(a, b) make_pair(a, b)
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> PII;
typedef vector<int> VI;
typedef vector<PII> VPI;
typedef vector<VI> VVI;
typedef vector<VVI> VVVI;
typedef vector<VPI> VVPI;
typedef pair<ll, ll> PLL;
typedef vector<ll> VL;
typedef vector<PLL> VPL;
typedef vector<VL> VVL;
typedef vector<VVL> VVVL;
typedef vector<VPL> VVPL;
template<class T> T setmax(T& a, T b) {if (a < b) return a = b; return a;}
template<class T> T setmin(T& a, T b) {if (a < b) return a; return a = b;}
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
template<class T>
using indset = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
#include "simurgh.h"
int n;
VVI gp;
VI vis;
bool dfs(int u = 0, int p = -1) {
vis[u] = true;
for (int v : gp[u]) if (v != p) {
if (vis[v]) return false;
if (!dfs(v, u)) return false;
}
return true;
}
bool istree(VPI edges) {
gp = VVI(n);
vis = VI(n);
for (auto[u, v] : edges) {
gp[u].pb(v);
gp[v].pb(u);
}
return dfs();
}
VI find_roads(int N, VI u, VI v) {
n = N;
int m = u.size();
int q = 0;
rep(s, 1<<m) {
int cnt = 0;
rep(i, m) if (s & (1<<i)) cnt++;
if (cnt != n-1) continue;
VPI edges;
rep(i, m) if (s & (1<<i)) edges.pb({u[i], v[i]});
if (!istree(edges)) continue;
VI ret;
rep(i, m) if (s & (1<<i)) ret.pb(i);
q++;
assert(q <= 30000);
if (count_common_roads(ret) == n-1) return ret;
}
return VI();
}
컴파일 시 표준 에러 (stderr) 메시지
simurgh.cpp: In function 'bool istree(VPI)':
simurgh.cpp:50:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
50 | for (auto[u, v] : edges) {
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |