# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1056516 |
2024-08-13T09:51:41 Z |
lovrot |
Islands (IOI08_islands) |
C++17 |
|
173 ms |
131072 KB |
#include <cstdio>
#include <vector>
#include <algorithm>
#include <set>
#define debug(...) //fprintf(stderr, __VA_ARGS__)
#define X first
#define Y second
#define PB push_back
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
const int N = 1e6 + 10;
int n, deg[N], to[N], weg[N];
vector<pii> g[N];
int cyci;
pii cyc[N];
void push_back(pii a) {
cyc[cyci++] = a;
}
void clear() {
cyci = 0;
}
char bio[N];
int dfs(int u, int p) {
bio[u] = 1;
for(pii e : g[u]) {
int v = e.X, w = e.Y;
if(w != p) {
if(bio[v]) {
push_back({e.X, weg[e.Y]});
// cyc.PB({e.X, weg[e.Y]});
return v;
} else {
int res = dfs(v, w);
if(res) {
push_back({e.X, weg[e.Y]});
// cyc.PB({e.X, weg[e.Y]});
return res != u ? res : 0;
}
}
}
}
bio[u] = 0;
return 0;
}
void mark(int u) {
bio[u] = 2;
for(pii e : g[u]) {
if(bio[e.X] != 2) {
mark(e.X);
}
}
}
ll dep[N], ans_;
ll depth(int u, int p) {
ll max_ = 0;
for(pii e : g[u]) {
int v = e.X, w = e.Y;
if(w != p && !bio[v]) {
ll res = (ll) weg[w] + depth(v, w);
if(dep[u] < res) {
max_ = dep[u];
dep[u] = res;
} else if(max_ < res) {
max_ = res;
}
}
}
ans_ = max(ans_, dep[u] + max_);
return dep[u];
}
multiset<ll> s;
int main() {
scanf("%d", &n);
for(int i = 1; i <= n; ++i) {
scanf("%d%d", to + i, weg + i);
++deg[i];
++deg[to[i]];
}
for(int i = 1; i <= n; ++i) {
g[i].reserve(deg[i]);
}
for(int i = 1; i <= n; ++i) {
g[i].PB({to[i], i});
g[to[i]].PB({i, i});
}
ll ans = 0;
for(int i = 1; i <= n; ++i) {
if(bio[i]) { continue; }
clear();
// s.clear();
ans_ = 0;
dfs(i, 0);
for(int j = 0; j < cyci; ++j) {
pii e = cyc[j];
depth(e.X, 0);
debug("%d(%d, %lld)\n", e.X, e.Y, dep[e.X]);
}
mark(i);
// ll prf = 0;
// for(int j = 0; j < cyci; ++j) {
// int v = cyc[j].X, w = cyc[j].Y;
// s.insert(dep[v] + prf);
// prf += w;
// }
//
// ll prf_ = 0, len = prf;
// for(int j = 0; j < cyci; ++j) {
// int v = cyc[j].X, w = cyc[j].Y;
// s.erase(s.find(dep[v] + prf - len));
//
// ans_ = max(ans_, *prev(s.end()) + dep[v] - prf + len);
//
// s.insert(dep[v] + prf);
// prf += w;
// }
//
// ans += ans_;
}
printf("%lld\n", ans);
return 0;
}
Compilation message
islands.cpp: In function 'int main()':
islands.cpp:89:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
89 | scanf("%d", &n);
| ~~~~~^~~~~~~~~~
islands.cpp:92:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
92 | scanf("%d%d", to + i, weg + i);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
31064 KB |
Output isn't correct |
2 |
Incorrect |
4 ms |
31068 KB |
Output isn't correct |
3 |
Incorrect |
4 ms |
31068 KB |
Output isn't correct |
4 |
Incorrect |
3 ms |
31172 KB |
Output isn't correct |
5 |
Incorrect |
4 ms |
31172 KB |
Output isn't correct |
6 |
Incorrect |
4 ms |
31068 KB |
Output isn't correct |
7 |
Incorrect |
3 ms |
31068 KB |
Output isn't correct |
8 |
Incorrect |
4 ms |
31068 KB |
Output isn't correct |
9 |
Incorrect |
4 ms |
31068 KB |
Output isn't correct |
10 |
Incorrect |
4 ms |
31068 KB |
Output isn't correct |
11 |
Incorrect |
4 ms |
31068 KB |
Output isn't correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
6 ms |
31068 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
31064 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
11 ms |
31920 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
14 ms |
36956 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
37 ms |
45392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
66 ms |
52308 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
168 ms |
76808 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
173 ms |
131072 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |