이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#pragma GCC optimize ("O3")
#pragma GCC optimize ("unroll-loops")
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include "highway.h"
using namespace __gnu_pbds;
using namespace std;
template <typename T>
using ordered_set = tree <T, null_type, less <T>, rb_tree_tag, tree_order_statistics_node_update>;
//
//namespace {
//
//constexpr int MAX_NUM_CALLS = 100;
//constexpr long long INF = 1LL << 61;
//
//int N, M, A, B, S, T;
//std::vector<int> U, V;
//std::vector<std::vector<std::pair<int, int>>> graph;
//
//bool answered, wrong_pair;
//int num_calls;
//
//int read_int() {
// int x;
// if (scanf("%d", &x) != 1) {
// fprintf(stderr, "Error while reading input\n");
// exit(1);
// }
// return x;
//}
//
//void wrong_answer(const char *MSG) {
// printf("Wrong Answer: %s\n", MSG);
// exit(0);
//}
//
//} // namespace
//
//long long ask(const std::vector<int> &w) {
// if (++num_calls > MAX_NUM_CALLS) {
// wrong_answer("more than 100 calls to ask");
// }
// if (w.size() != (size_t)M) {
// wrong_answer("w is invalid");
// }
// for (size_t i = 0; i < w.size(); ++i) {
// if (!(w[i] == 0 || w[i] == 1)) {
// wrong_answer("w is invalid");
// }
// }
//
// std::vector<bool> visited(N, false);
// std::vector<long long> current_dist(N, INF);
// std::queue<int> qa, qb;
// qa.push(S);
// current_dist[S] = 0;
// while (!qa.empty() || !qb.empty()) {
// int v;
// if (qb.empty() ||
// (!qa.empty() && current_dist[qa.front()] <= current_dist[qb.front()])) {
// v = qa.front();
// qa.pop();
// } else {
// v = qb.front();
// qb.pop();
// }
// if (visited[v]) {
// continue;
// }
// visited[v] = true;
// long long d = current_dist[v];
// if (v == T) {
// return d;
// }
// for (auto e : graph[v]) {
// int vv = e.first;
// int ei = e.second;
// if (!visited[vv]) {
// if (w[ei] == 0) {
// if (current_dist[vv] > d + A) {
// current_dist[vv] = d + A;
// qa.push(vv);
// }
// } else {
// if (current_dist[vv] > d + B) {
// current_dist[vv] = d + B;
// qb.push(vv);
// }
// }
// }
// }
// }
// return -1;
//}
//
//void answer(int s, int t) {
// if (answered) {
// wrong_answer("answered not exactly once");
// }
//
// if (!((s == S && t == T) || (s == T && t == S))) {
// wrong_pair = true;
// }
//
// answered = true;
//}
void find_pair(int n, vector<int> U, vector<int> V, int A, int B) {
vector <vector <pair <int, int>>> g(n);
vector <int> ord(n), id(n);
int m = U.size();
for (int i = 0; i < m; ++i) {
g[U[i]].push_back({V[i], i});
g[V[i]].push_back({U[i], i});
// cout << U[i] << ' ' << V[i] << "asdsdfsdf\n";
}
int ti = 0;
function <void(int, int)> dfs = [&](int u, int p) {
ord[ti++] = u;
for (auto [v, i]: g[u]) {
if (v == p) continue;
id[v] = i;
dfs(v, u);
}
};
dfs(0, -1);
vector <int> w(m, 0);
int cnt = ask(w) / A;
// cout << ask(w) << '\n';
// cout << cnt << '\n';
int L = 1, R = n - 1;
while (L < R) {
int mid = L + R >> 1;
vector <int> w(m, 0);
for (int i = 1; i <= mid; ++i) w[id[ord[i]]] = 1;
int cur_cnt = (ask(w) - 1LL * A * cnt) / (B - A);
// assert((ask(w) - 1LL * A * cnt) % (B - A) == 0);
// assert(cnt >= cur_cnt);
if (cnt == cur_cnt) R = mid;
else L = mid + 1;
}
int S = ord[L];
// for (int i = 0; i < n; ++i) cout << ord[i] << ' ';
// cout << '\n';
ti = 0;
dfs(S, -1);
// cout << S << "aa\n";
L = 1, R = n - 1;
while (L < R) {
int mid = L + R >> 1;
vector <int> w(m, 0);
for (int i = 1; i <= mid; ++i) w[id[ord[i]]] = 1;
int cur_cnt = (ask(w) - 1LL * A * cnt) / (B - A);
if (cnt == cur_cnt) R = mid;
else L = mid + 1;
}
int T = ord[R];
answer(S, T);
}
/*
11 10 3 10 6 8
0 1
0 2
1 3
1 4
4 5
4 6
2 7
2 8
8 9
8 10
*/
//int main() {
// N = read_int();
// M = read_int();
// A = read_int();
// B = read_int();
// S = read_int();
// T = read_int();
// U.resize(M);
// V.resize(M);
// graph.assign(N, std::vector<std::pair<int, int>>());
// for (int i = 0; i < M; ++i) {
// U[i] = read_int();
// V[i] = read_int();
// graph[U[i]].push_back({V[i], i});
// graph[V[i]].push_back({U[i], i});
// }
//
// answered = false;
// wrong_pair = false;
// num_calls = 0;
// find_pair(N, U, V, A, B);
// if (!answered) {
// wrong_answer("answered not exactly once");
// }
// if (wrong_pair) {
// wrong_answer("{s, t} is wrong");
// }
// printf("Accepted: %d\n", num_calls);
// return 0;
//}
컴파일 시 표준 에러 (stderr) 메시지
highway.cpp: In lambda function:
highway.cpp:123:19: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
123 | for (auto [v, i]: g[u]) {
| ^
highway.cpp: In function 'void find_pair(int, std::vector<int>, std::vector<int>, int, int)':
highway.cpp:136:21: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
136 | int mid = L + R >> 1;
| ~~^~~
highway.cpp:153:21: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
153 | int mid = L + R >> 1;
| ~~^~~
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |