답안 #282179

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
282179 2020-08-24T05:54:27 Z kevlee 꿈 (IOI13_dreaming) C++17
18 / 100
77 ms 12916 KB
#include <bits/stdc++.h>
#include "dreaming.h"
using namespace std;
#define pb push_back
#define mod 1000000007
#define h1 7897897897897897
#define h2 7897466719774591
#define b1 98762051
#define b2 98765431
#define inf 1000000000
#define pi 3.1415926535897932384626
#define LMAX 9223372036854775807
#define ll long long
#define fi first
#define se second
#define pii pair<int, int>
#define pll pair<ll, ll>
#define vi vector<int>
#define vl vector<ll>
#define vp vector<pii>
#define SET(a, b) memset(a, b, sizeof(a));
#define all(x) (x).begin(), (x).end()
#define FOR(i, a, b) for (int i = (a); i <= (b); i++)
#define FORD(i, a, b) for (int i = (a); i >= (b); i--)
int dist[100005], deg[100005], dpup[100005], dpdown[100005], n, m, l, diameter, ans, maxchild[100005], secondmax[100005];
vp edges[100005];
vi v, comp;
bool vis[100005];
void dfs(int x, int p) {
  diameter = max(diameter, dist[x]);
  vis[x] = true;
  v.pb(x);
  for (auto edge: edges[x]) {
    if (edge.fi != p) {
      dist[edge.fi] = dist[x] + edge.se;
      dfs(edge.fi, x);
    }
  }
}
int find_diameter(int root) {
  dist[root] = 0;
  diameter = 0;
  v.clear();
  dfs(root, -1);
  return diameter;
}
//compute initial dp and dpdown
int dfs2(int x, int p) {
  for (auto edge: edges[x]) {
    if (edge.fi == p) continue;
    int child = dfs2(edge.fi, x) + edge.se;
    if (child > dpdown[x]) {
      dpdown[x] = child;
      maxchild[x] = edge.fi;
    } else {
      secondmax[x] = max(secondmax[x], child);
    }
  }
  return dpdown[x];
}
//update dp and dpup
void dfs3(int x, int p) {
  for (auto edge: edges[x]) {
    if (edge.fi == p) continue;
    dpup[edge.fi] = dpup[x] + edge.se; 
    if (edge.fi == maxchild[x]) {
      dpup[edge.fi] = max(dpup[edge.fi], secondmax[x] + edge.se);
    } else {
      dpup[edge.fi] = max(dpup[edge.fi], dpdown[x] + edge.se);
    }
    dfs3(edge.fi, x);
  }
}
void find_shortest_path() {
  int useless = dfs2(v[0], -1);
  dfs3(v[0], -1);
  int tmp = inf * 2;
  for (int node: v) {
    tmp = min(tmp, max(dpup[node], dpdown[node]));
    //cout << node << ' ' << dpup[node] << ' ' << dpdown[node] << endl;
  }
  comp.pb(tmp);
  //cout << "tmp " << tmp << endl;
}
int travelTime(int N, int M, int L, int u[], int v[], int t[]) {
  n = N;
  m = M;
  l = L;
  FOR(i, 0, m-1) {
    edges[u[i] + 1].emplace_back(v[i] + 1, t[i]);
    edges[v[i] + 1].emplace_back(u[i] + 1, t[i]);
    deg[u[i] + 1]++;
    deg[v[i] + 1]++;
  }
  FOR(i, 1, n) {
    if (!vis[i]) {
      ans = max(ans, find_diameter(i));
      find_shortest_path();
    }
  }
  int sz = comp.size();
  sort(all(comp));
  reverse(all(comp));
  if (sz == 1) {}
  else if (sz == 2) {
    ans = max(ans, L + comp[0] + comp[1]);
  } else {
    ans = max(ans, L + comp[0] + comp[1]);
    ans = max(ans, L + L + comp[1] + comp[2]);
  }
  return ans;
}

Compilation message

dreaming.cpp: In function 'void find_shortest_path()':
dreaming.cpp:75:7: warning: unused variable 'useless' [-Wunused-variable]
   75 |   int useless = dfs2(v[0], -1);
      |       ^~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 77 ms 12916 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 77 ms 12916 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 77 ms 12916 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 32 ms 7272 KB Output is correct
2 Correct 35 ms 7416 KB Output is correct
3 Correct 30 ms 7296 KB Output is correct
4 Correct 39 ms 7292 KB Output is correct
5 Correct 30 ms 7296 KB Output is correct
6 Correct 31 ms 7808 KB Output is correct
7 Correct 31 ms 7544 KB Output is correct
8 Correct 31 ms 7288 KB Output is correct
9 Correct 30 ms 7156 KB Output is correct
10 Correct 31 ms 7548 KB Output is correct
11 Correct 2 ms 2688 KB Output is correct
12 Correct 8 ms 5116 KB Output is correct
13 Correct 8 ms 5240 KB Output is correct
14 Correct 8 ms 5112 KB Output is correct
15 Correct 8 ms 5116 KB Output is correct
16 Correct 7 ms 4988 KB Output is correct
17 Correct 7 ms 4348 KB Output is correct
18 Correct 8 ms 5240 KB Output is correct
19 Correct 8 ms 4988 KB Output is correct
20 Correct 2 ms 2688 KB Output is correct
21 Correct 2 ms 2688 KB Output is correct
22 Correct 2 ms 2816 KB Output is correct
23 Correct 8 ms 4988 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 77 ms 12916 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 77 ms 12916 KB Output isn't correct
2 Halted 0 ms 0 KB -