# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
53834 |
2018-07-01T09:09:32 Z |
0^0(#1430) |
Islands (IOI08_islands) |
C++11 |
|
1530 ms |
206912 KB |
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
struct SGT {
vector<ll> tree;
int sz;
SGT(int n) {
sz = 1;
while (sz < n)sz *= 2;
tree.resize(sz * 2);
}
ll query(int le, int ri) {
le += sz;
ri += sz;
ll ret = 0;
while (le <= ri) {
if (le & 1)ret = max(ret, tree[le++]);
if (!(ri & 1))ret = max(ret, tree[ri--]);
le /= 2;
ri /= 2;
}
return ret;
}
};
int n;
vector<tuple<int,int,int> > adj[1000005];
int trip[1000005];
bool chk[1000005];
vector<int> cycle,len;
vector<ll> d;
ll dd[1000005];
int vn;
int dfs(int now, int par,int pw,int pi) {
int ret = trip[now] = ++vn;
for (auto &e : adj[now]) {
int there, weight, idx;
tie(there, weight, idx) = e;
if (idx==pi)continue;
if (!trip[there])ret = min(ret, dfs(there, now, weight, idx));
else if(!chk[there]){
ret = min(ret, trip[there]);
cycle.push_back(there);
chk[there] = true;
len.push_back(weight);
}
}
if (ret < trip[now]) {
chk[now] = true;
cycle.push_back(now);
len.push_back(pw);
}
return ret;
}
ll val;
void dfs2(int now, int par) {
for (auto &e : adj[now]) {
int there, weight, idx;
tie(there, weight, idx) = e;
if (there == par || chk[there])continue;
dfs2(there, now);
val = max(val, dd[now] + dd[there] + weight);
dd[now] = max(dd[now], dd[there] + weight);
}
}
ll calc(vector<ll> d, vector<int> len, int m) {
vector<ll> ds(m);
for (int i = 1; i < m; i++)
ds[i] = ds[i - 1] + len[i - 1];
SGT sgt(m * 2);
ll sum = len[0];
for (int i = 1; i < m * 2; i++) {
sgt.tree[i + sgt.sz] = sum + d[i%m];
sum += len[i%m];
}
for (int i = sgt.sz - 1; i; i--)
sgt.tree[i] = max(sgt.tree[i * 2], sgt.tree[i * 2 + 1]);
ll ret = 0;
for (int i = 0; i < m; i++) {
ll temp = d[i] + sgt.query(i + 1, i + m - 1) - ds[i];
ret = max(ret, temp);
}
return ret;
}
int main() {
scanf("%d", &n);
for (int i = 1; i <= n; i++) {
int a, b;
scanf("%d%d", &a, &b);
adj[i].emplace_back(a, b, i);
adj[a].emplace_back(i, b, i);
}
ll ans = 0;
for (int i = 1; i <= n; i++) {
if (!trip[i]) {
cycle.clear();
len.clear();
d.clear();
dfs(i, 0, 0, 0);
int m = cycle.size();
d.resize(m);
val = 0;
for (int i = 0; i < cycle.size(); i++) {
dfs2(cycle[i], 0);
d[i] = dd[cycle[i]];
}
val = max(val,calc(d, len, m));
reverse(len.begin(), len.end() - 1);
reverse(d.begin(), d.end());
val = max(val, calc(d, len, m));
ans += val;
}
}
printf("%lld\n", ans);
return 0;
}
Compilation message
islands.cpp: In function 'int main()':
islands.cpp:102:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < cycle.size(); i++) {
~~^~~~~~~~~~~~~~
islands.cpp:85:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &n);
~~~~~^~~~~~~~~~
islands.cpp:88:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d", &a, &b);
~~~~~^~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
21 ms |
23800 KB |
Output is correct |
2 |
Correct |
21 ms |
23800 KB |
Output is correct |
3 |
Correct |
21 ms |
23944 KB |
Output is correct |
4 |
Correct |
22 ms |
23960 KB |
Output is correct |
5 |
Correct |
24 ms |
23960 KB |
Output is correct |
6 |
Correct |
21 ms |
23960 KB |
Output is correct |
7 |
Correct |
20 ms |
24024 KB |
Output is correct |
8 |
Correct |
25 ms |
24056 KB |
Output is correct |
9 |
Correct |
24 ms |
24056 KB |
Output is correct |
10 |
Correct |
22 ms |
24056 KB |
Output is correct |
11 |
Correct |
25 ms |
24056 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
25 ms |
24100 KB |
Output is correct |
2 |
Correct |
21 ms |
24100 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
21 ms |
24144 KB |
Output is correct |
2 |
Correct |
23 ms |
24532 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
32 ms |
25316 KB |
Output is correct |
2 |
Correct |
46 ms |
28396 KB |
Output is correct |
3 |
Correct |
34 ms |
28396 KB |
Output is correct |
4 |
Correct |
27 ms |
28396 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
56 ms |
30264 KB |
Output is correct |
2 |
Correct |
91 ms |
32460 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
137 ms |
38308 KB |
Output is correct |
2 |
Correct |
164 ms |
45920 KB |
Output is correct |
3 |
Correct |
216 ms |
63748 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
235 ms |
63748 KB |
Output is correct |
2 |
Correct |
318 ms |
83784 KB |
Output is correct |
3 |
Correct |
451 ms |
84440 KB |
Output is correct |
4 |
Correct |
548 ms |
120584 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
488 ms |
120584 KB |
Output is correct |
2 |
Correct |
1422 ms |
148876 KB |
Output is correct |
3 |
Correct |
451 ms |
148876 KB |
Output is correct |
4 |
Correct |
671 ms |
148876 KB |
Output is correct |
5 |
Correct |
620 ms |
148876 KB |
Output is correct |
6 |
Correct |
1418 ms |
148876 KB |
Output is correct |
7 |
Correct |
748 ms |
181028 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
710 ms |
181028 KB |
Output is correct |
2 |
Correct |
599 ms |
181028 KB |
Output is correct |
3 |
Correct |
981 ms |
206912 KB |
Output is correct |
4 |
Correct |
793 ms |
206912 KB |
Output is correct |
5 |
Correct |
741 ms |
206912 KB |
Output is correct |
6 |
Correct |
575 ms |
206912 KB |
Output is correct |
7 |
Correct |
1530 ms |
206912 KB |
Output is correct |