QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#99779 | #4809. Maximum Range | ckiseki# | RE | 47ms | 13592kb | C++20 | 4.8kb | 2023-04-23 18:01:56 | 2023-04-23 18:01:58 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#ifdef CKISEKI
#define safe cerr << __PRETTY_FUNCTION__ << " line " << __LINE__ << " safe\n"
#define orange(a...) orange_(#a, a)
#define debug(a...) debug_(#a, a)
template <typename i>
void orange_(const char * s, i l, i r) {
cerr << "\e[1;32m[ " << s << " ] = [ ";
for (int f = 0; l != r; l++)
cerr << (f++ ? " " : "") << *l;
cerr << " ]\e[0m\n";
}
template <typename ...T>
void debug_(const char * s, T ...a) {
cerr << "\e[1;32m(" << s << ") = (";
int cnt = sizeof...(T);
(..., (cerr << a << (--cnt ? ", " : ")\e[0m\n")));
}
#else
#define safe ((void)0)
#define debug(...) safe
#define orange(...) safe
#endif
namespace {
class BCC {
private:
int n, ecnt;
vector<vector<pair<int, int>>> g;
vector<int> dfn, low;
vector<bool> bridge;
void dfs(int u, int f) {
dfn[u] = low[u] = dfn[f] + 1;
int ch = 0;
for (auto [v, t] : g[u]) if (v != f) {
if (dfn[v]) {
low[u] = min(low[u], dfn[v]);
} else {
++ch;
dfs(v, u);
low[u] = min(low[u], low[v]);
if (low[v] > dfn[u])
bridge[t] = true;
}
}
}
public:
void init(int n_) {
g.assign(n = n_, vector<pair<int, int>>());
low.assign(n, ecnt = 0);
dfn.assign(n, 0);
}
void add_edge(int u, int v) {
g[u].emplace_back(v, ecnt);
g[v].emplace_back(u, ecnt++);
}
void solve() {
bridge.assign(ecnt, false);
for (int i = 0; i < n; ++i)
if (not dfn[i]) dfs(i, i);
}
bool is_bridge(int x) const { return bridge[x]; }
};
constexpr int kInf = 1 << 30;
} // namespace
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
int n, m;
cin >> n >> m;
vector<tuple<int, int, int>> e(m);
for (auto &[u, v, w] : e) {
cin >> u >> v >> w;
--u, --v;
}
BCC bcc;
bcc.init(n);
for (auto [u, v, w] : e) bcc.add_edge(u, v);
bcc.solve();
vector<vector<pair<int, int>>> g(n);
for (int i = 0; i < m; ++i) {
if (bcc.is_bridge(i)) continue;
auto [u, v, w] = e[i];
g[u].emplace_back(v, i);
g[v].emplace_back(u, i);
}
vector<bool> vis(n);
auto dfs = [&](auto self, int i) -> pair<int, int> {
vis[i] = true;
pair<int, int> r = {-1, -1};
for (auto [j, x] : g[i]) {
if (r.first == -1 or get<2>(e[x]) < get<2>(e[r.first]))
r.first = x;
if (r.second == -1 or get<2>(e[x]) > get<2>(e[r.second]))
r.second = x;
if (vis[j]) continue;
auto [p, q] = self(self, j);
if (p != -1 and get<2>(e[p]) < get<2>(e[r.first]))
r.first = p;
if (q != -1 and get<2>(e[q]) > get<2>(e[r.second]))
r.second = q;
}
return r;
};
tuple<int, int, int> ans = {0, -1, -1};
for (int i = 0; i < n; ++i) {
if (vis[i]) continue;
auto [x, y] = dfs(dfs, i);
if (x == -1 or y == -1) continue;
ans = max(ans, {get<2>(e[y]) - get<2>(e[x]), x, y});
}
assert(get<1>(ans) != -1);
auto gao = [&](int i, int j) {
vector<bool> bye(m);
bye[i] = true;
bye[j] = true;
vector<int> stk;
auto walk = [&](auto self, int u, int o) -> bool {
if (o == u) return true;
vis[u] = true;
for (auto [v, x] : g[u]) {
if (bye[x] or vis[v]) continue;
stk.push_back(x);
if (self(self, v, o)) return true;
stk.pop_back();
}
return false;
};
auto [a, b, w1] = e[i];
auto [c, d, w2] = e[j];
vector<int> path;
fill(vis.begin(), vis.end(), false);
if (not walk(walk, b, c)) return false;
path.push_back(b);
for (int x : stk) {
auto [p, q, w] = e[x];
bye[x] = true;
if (path.back() == p) path.push_back(q);
else path.push_back(p);
}
stk.clear();
fill(vis.begin(), vis.end(), false);
if (not walk(walk, d, a)) return false;
path.push_back(d);
for (int x : stk) {
auto [p, q, w] = e[x];
if (path.back() == p) path.push_back(q);
else path.push_back(p);
}
cout << path.size() << '\n';
for (size_t x = 0; x < path.size(); ++x)
cout << path[x] + 1 << " \n"[x + 1 == path.size()];
return true;
};
cout << get<0>(ans) << '\n';
cout.flush();
if (not gao(get<1>(ans), get<2>(ans))) {
swap(get<0>(e[get<1>(ans)]), get<1>(e[get<1>(ans)]));
assert(gao(get<1>(ans), get<2>(ans)));
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 3444kb
input:
5 7 1 2 1 1 3 -2 2 3 1 3 4 3 4 5 1 1 5 -1 2 5 2
output:
5 4 3 4 5 1
result:
ok ok
Test #2:
score: 0
Accepted
time: 39ms
memory: 13520kb
input:
99997 100000 12238 99016 352755196 99016 25485 -412473602 25485 2440 991507552 2440 31171 -181894654 36970 2440 -800167579 2440 41865 -148191946 96629 31171 847888506 36970 95740 395546542 27992 2440 647886610 99016 29557 369124914 80795 27992 -673871966 36970 3509 573208857 57672 29557 874406776 41...
output:
1959330954 37 95092 34883 46301 96778 37694 88289 30288 68523 54073 84997 89628 67966 84407 3463 72825 51491 87712 96230 22074 72089 76022 86665 92617 74677 86274 94991 96048 4697 44442 68883 69259 57672 29557 99016 25485 2440 31171
result:
ok ok
Test #3:
score: 0
Accepted
time: 34ms
memory: 13568kb
input:
99997 100000 41884 21178 -431811360 41884 42699 -450057006 36523 21178 582079730 21178 96679 615552614 63637 21178 498974417 96679 5108 235820276 75058 41884 220112636 35148 42699 589595309 36523 18002 -637739861 65854 5108 -312755792 45137 41884 -511118771 5108 31311 554050951 25335 35148 -28341059...
output:
1968439328 40 33264 26071 90144 25926 52252 51434 69337 7577 5108 50088 6204 28694 41126 87303 83047 26981 54901 59612 14678 35287 78274 18331 89860 71024 99686 98098 23692 87673 42699 41884 45137 85192 38202 83711 83919 55330 71151 98733 99716 70298
result:
ok ok
Test #4:
score: 0
Accepted
time: 41ms
memory: 13508kb
input:
99984 99999 33974 29867 335681778 33974 87468 348956829 83048 87468 320849805 29867 69456 -424530698 72457 69456 -950650074 53838 83048 755969166 85914 69456 569454441 51728 87468 -202158773 15970 29867 -865071002 15970 94894 697607001 94894 74694 616318126 33974 11496 -89287579 53838 34365 -6577379...
output:
1985932414 114 92249 27866 23026 83298 1652 76013 29864 53838 83048 87468 33974 29867 69456 85914 75496 46062 87002 73105 10753 25785 76366 75626 98151 50936 15970 94894 74694 29296 25952 23014 84486 96848 6053 59406 91605 30363 85067 58162 86558 90720 49758 56921 69121 85827 42768 81022 45037 63173...
result:
ok ok
Test #5:
score: 0
Accepted
time: 37ms
memory: 13592kb
input:
99988 99992 8584 11873 -811540160 68064 11873 -930246087 11873 60056 916668870 68064 82193 -859062523 60056 75072 790866030 27767 75072 357619485 75072 78221 411650300 39636 82193 264106928 6675 60056 933851261 71747 78221 -508471038 11873 92771 -665232168 34402 27767 -906494982 11873 42714 63734230...
output:
1932268861 51 75593 83884 20678 16385 62720 25891 75176 34179 64174 38274 8778 99809 28745 6675 60056 11873 92771 85220 58554 39084 56595 84609 37651 34186 9507 31480 34053 58977 97618 44542 11476 4661 26471 43133 62479 27767 75072 91957 3186 29873 5185 88236 50628 2518 83283 23798 89787 8975 26922 ...
result:
ok ok
Test #6:
score: 0
Accepted
time: 47ms
memory: 13576kb
input:
99996 99996 58191 98120 261718607 91298 98120 471683748 58191 68921 217652908 67441 91298 -731916804 78177 68921 810185021 98120 54747 -35446486 78177 2822 -409569426 91298 68058 -897038977 68921 39067 892161204 30165 78177 379543758 32418 98120 -139944101 11281 68921 422411872 37751 32418 331606200...
output:
1752928792 25 16812 67249 25934 42296 85525 18913 29915 78216 34081 11281 68921 58191 48440 3783 3308 58464 1917 30739 77560 4369 46983 74019 64478 81854 65221
result:
ok ok
Test #7:
score: -100
Dangerous Syscalls
input:
99996 100000 39127 4358 657531703 4358 66528 484843263 47215 4358 -856669390 47215 26179 -147254695 24822 39127 -635228854 81984 26179 600617794 24822 60559 327733708 39127 23879 286268283 95563 81984 -766366787 96587 24822 723252700 23879 13711 -303309809 60559 38379 992907085 60559 6012 -15086498 ...
output:
1948904917