Submission #527909

# Submission time Handle Problem Language Result Execution time Memory
527909 2022-02-18T17:08:40 Z cig32 Transport (COCI19_transport) C++17
117 / 130
1000 ms 25748 KB
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/detail/standard_policies.hpp>
using namespace std;
using namespace __gnu_pbds;
mt19937_64 rng((int)std::chrono::steady_clock::now().time_since_epoch().count());
const int MAXN = 1e5 + 10;
const int MOD = 1e9 + 7;
#define int long long
typedef tree<pair<int, int>, null_type, less<pair<int, int> >, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
int rnd(int x, int y) {
  int u = uniform_int_distribution<int>(x, y)(rng); return u;
}
int n, a[MAXN]; vector<pair<int, int> > adj[MAXN];
bool glo[MAXN];
//Centroid: when you cut this vertex (remove it and 
//remove all edges from this vertex), the size of the largest 
//connected component of the remaining graph is the smallest possible.
//https://codeforces.com/problemset/problem/1406/C
//Total time complexity: O(n log^2 n)
int sz, mi, ctd;
int ans = 0; // ctd = centroid
int dfs0(int node, int prv) {
  int tot = 1;
  for(auto x: adj[node]) {
    if(!glo[x.first] && x.first != prv) {
      tot += dfs0(x.first, node);
    }
  }
  return tot;
}
int dfs1(int node, int prv) {
  int ret = 1;
  int ma = 0;
  for(auto x: adj[node]) {
    if(!glo[x.first] && x.first != prv) {
      int q = dfs1(x.first, node);
      ret += q;
      ma = max(ma, q);
    }
  }
  int rem = sz - ret;
  ma = max(ma, rem);
  if(ma < mi) {
    mi = ma;
    ctd = node;
  }
  return ret;
}
int id = 0;
void decomp(int st) {
  //st: an arbitrary node in the tree in question
  //step 1: find the centroid + count number of nodes
  sz = dfs0(st, -1);
  mi = 1e9, ctd = -1;
  dfs1(st, -1);
  //step 2: if nodes = 1, break
  if(sz == 1) return;
  //step 3: root the subtree at centroid, do a bfs
  // all weights = {sum, min}
 
  
  //step 3a: count id[u] < id[v]
  vector<pair<int,int> > all;
  for(auto x: adj[ctd]) if(!glo[x.first]) all.push_back(x);
  ordered_set s;
  glo[ctd] = 1;
  for(int i=0; i<all.size(); i++) {
    unordered_map<int, pair<int, int> > w1; // weights to count
    unordered_map<int, pair<int, int> > w2; // weights to insert
    queue<int> q;
    unordered_map<int, int> vis;
    vector<int> omg;
    w1[all[i].first] = {a[ctd] + all[i].second, a[ctd] + all[i].second};
    w2[all[i].first] = {a[all[i].first] + all[i].second, a[all[i].first] + all[i].second};
    q.push(all[i].first);
    while(q.size()) {
      int f=q.front(); q.pop();
      if(vis[f] || glo[f]) continue;
      vis[f] = 1; omg.push_back(f);
      if(s.size()>0) {
        if(w1[f].second>=0) ans += s.size();
        else ans += s.size() - s.order_of_key({-w1[f].second, 0});
      }
      for(auto x: adj[f]) {
        if(vis[x.first] || glo[x.first]) continue;
        q.push(x.first);
        w1[x.first] = {w1[f].first + a[f] + x.second, min(w1[f].second, w1[f].first + a[f] + x.second)};
        w2[x.first] = {w2[f].first + a[x.first] + x.second, min(w2[f].second, 0ll) + a[x.first] + x.second};
      }
    }
    //insert
    for(int x: omg) {
      if(w2[x].second >= 0) s.insert({w2[x].first, ++id});
    }
  }
 
  
  reverse(all.begin(), all.end());
  s.clear();
  //step 3b: count id[u] > id[v]

  for(int i=0; i<all.size(); i++) {
    unordered_map<int, pair<int, int> > w1; // weights to count
    unordered_map<int, pair<int, int> > w2; // weights to insert
    queue<int> q;
    unordered_map<int, int> vis;
    vector<int> omg;
    w1[all[i].first] = {a[ctd] + all[i].second, a[ctd] + all[i].second};
    w2[all[i].first] = {a[all[i].first] + all[i].second, a[all[i].first] + all[i].second};
    q.push(all[i].first);
    while(q.size()) {
      int f=q.front(); q.pop();
      if(vis[f] || glo[f]) continue;
      vis[f] = 1; omg.push_back(f);
      if(s.size()>0) {
        if(w1[f].second>=0) ans += s.size();
        else ans += s.size() - s.order_of_key({-w1[f].second, 0});
      }
      for(auto x: adj[f]) {
        if(vis[x.first] || glo[x.first]) continue;
        q.push(x.first);
        w1[x.first] = {w1[f].first + a[f] + x.second, min(w1[f].second, w1[f].first + a[f] + x.second)};
        w2[x.first] = {w2[f].first + a[x.first] + x.second, min(w2[f].second, 0ll) + a[x.first] + x.second};
      }
    }
    //insert
    for(int x: omg) {
      if(w2[x].second >= 0) {
        s.insert({w2[x].first, ++id});
      }
    }
    //step 3c: count u = root (= ctd)
    for(int x: omg) {
      if(w1[x].second >= 0) {
        ans++;
      }
    }
  }
  
  //step 3d: count v = root (= ctd)
  ans += s.size(); 
  //step 4: remove all edges from the centroid
  for(auto x: adj[ctd]) if(!glo[x.first]) decomp(x.first);
}
void solve(int tc) {
  cin >> n;
  for(int i=1; i<=n; i++) cin >> a[i];
  for(int i=1; i<n; i++) {
    int u, v, w; 
    cin >> u >> v >> w;
    w = -w;
    adj[u].push_back({v, w});
    adj[v].push_back({u, w});
  }
  decomp(1);
  cout << ans << "\n";
}
int32_t main(){
  ios::sync_with_stdio(0); cin.tie(0);
  int t = 1; //cin >> t;
  for(int i=1; i<=t; i++) solve(i);
}

Compilation message

transport.cpp: In function 'void decomp(long long int)':
transport.cpp:69:17: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   69 |   for(int i=0; i<all.size(); i++) {
      |                ~^~~~~~~~~~~
transport.cpp:104:17: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  104 |   for(int i=0; i<all.size(); i++) {
      |                ~^~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 22 ms 3148 KB Output is correct
2 Correct 18 ms 3248 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 32 ms 3532 KB Output is correct
2 Correct 35 ms 3752 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 471 ms 12740 KB Output is correct
2 Correct 340 ms 10304 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 595 ms 15324 KB Output is correct
2 Correct 659 ms 16120 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 862 ms 20060 KB Output is correct
2 Correct 964 ms 25748 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 304 ms 7468 KB Output is correct
2 Correct 151 ms 6264 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 274 ms 8676 KB Output is correct
2 Correct 423 ms 8464 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 659 ms 10076 KB Output is correct
2 Correct 531 ms 10872 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 841 ms 14204 KB Output is correct
2 Correct 751 ms 15616 KB Output is correct
# Verdict Execution time Memory Grader output
1 Execution timed out 1081 ms 19004 KB Time limit exceeded
2 Halted 0 ms 0 KB -