# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
50705 |
2018-06-13T01:12:39 Z |
wzy |
Factories (JOI14_factories) |
C++11 |
|
6000 ms |
114004 KB |
#include <bits/stdc++.h>
#include "factories.h"
using namespace std;
#pragma GCC optimize ("Ofast")
#define pii pair<int,long long>
#define F first
#define S second
#define pb push_back
bool jafoi[500005];
vector<pii> adj[500005] ;
int n , pai[500005] , lca[22][500005] , depth[500005] , st[500005] , t= 0 , ed[500005] ;
long long dist[500005] , dp[2][500005];
int op[1000000];
int pointer = 0;
bool inside(int u , int v){
return (st[u] <= st[v] && ed[u] >= ed[v]);
}
void pre_dfs(int x , int y){
lca[0][x] = y;
for(int j = 1 ; j< 22 ; j++){
if(lca[j-1][x] != -1){
lca[j][x] = lca[j-1][lca[j-1][x]];
}
}
st[x] = ++t;
for(int j = 0 ; j < adj[x].size() ; j++){
pii u = adj[x][j];
if(u.first == y) continue;
dist[u.first] = dist[x] + u.second;
depth[u.first] = depth[x] + 1;
pre_dfs(u.first, x);
}
ed[x] = t;
}
int query_lca(int x , int y){
if(inside(x,y)) return x;
if(inside(y,x)) return y;
for(int j = 21 ; j >= 0 ; j--){
if(lca[j][x] != -1 && !(inside(lca[j][x] , y))) x = lca[j][x];
}
return lca[0][x];
}
void Init(int N, int A[], int B[], int D[]){
n = N;
for(int i = 0 ; i < N - 1 ; i++){
adj[A[i]].pb(pii(B[i] , D[i]));
adj[B[i]].pb(pii(A[i] , D[i]));
}
depth[0] = 0 , dist[0] = 0;
pre_dfs(0 , - 1 );
for(int i = 0 ; i < N - 1; i++){
adj[A[i]].clear() , adj[B[i]].clear();
}
}
bool cmp(int a , int b){
return st[a] < st[b];
}
long long ansz = 0;
void solve(int x , int y){
for(int j = 0 ; j < adj[x].size() ; j++){
pii u = adj[x][j];
if(u.F == y) continue;
solve(u.F, x);
ansz = min(ansz , min(dp[0][x] + dp[1][u.F] + u.S , dp[1][x] + dp[0][u.F] + u.S));
dp[0][x] = min(dp[0][x] , dp[0][u.F] + u.S);
dp[1][x] = min(dp[1][x] , dp[1][u.F] + u.S);
}
return ;
}
long long Query(int S , int X[] , int T , int Y[]){
pointer = 0;
for(int i = 0 ; i < max(S,T) ;i ++){
if(!jafoi[X[i]] && i < S){
op[pointer++] = X[i];
jafoi[X[i]] = 1;
dp[0][X[i]] = 0;
dp[1][X[i]] = 1000000000000000LL;
}
if(!jafoi[Y[i]] && i < T){
op[pointer++] = Y[i];
jafoi[Y[i]] = 1;
dp[1][Y[i]] = 0;
dp[0][Y[i]] = 1000000000000000LL;
}
}
sort(op , op + pointer , cmp);
int Z = (pointer)- 1;
for(int i = 0 ; i < Z ; i++){
int L = query_lca(op[i] , op[i+1]);
if(!jafoi[L]){
dp[0][L] = 1000000000000000LL;
dp[1][L] = 1000000000000000LL;
op[pointer++] = L;
jafoi[L] = 1;
}
}
sort(op , op + pointer , cmp);
vector<int> w;
int root ;
for(int i = 0; i < pointer ; i++){
if(w.size() == 0){
root = op[i];
w.push_back(op[i]);
continue;
}
while(w.size() && !(inside(w.back() , op[i]))){
w.pop_back();
}
long long u =dist[op[i]] - dist[w.back()];
adj[op[i]].push_back(pii(w.back() , u));
adj[w.back()].push_back(pii(op[i] , u));
w.push_back(op[i]);
}
ansz = 1000000000000000LL;
solve(root , root);
for(int i = 0 ; i < pointer; i++){
adj[op[i]].clear();
jafoi[op[i]] = false;
}
return ansz;
}
Compilation message
factories.cpp: In function 'void pre_dfs(int, int)':
factories.cpp:26:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j = 0 ; j < adj[x].size() ; j++){
~~^~~~~~~~~~~~~~~
factories.cpp: In function 'void solve(int, int)':
factories.cpp:67:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j = 0 ; j < adj[x].size() ; j++){
~~^~~~~~~~~~~~~~~
factories.cpp: In function 'long long int Query(int, int*, int, int*)':
factories.cpp:124:9: warning: 'root' may be used uninitialized in this function [-Wmaybe-uninitialized]
solve(root , root);
~~~~~^~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
37 ms |
12668 KB |
Output is correct |
2 |
Correct |
1506 ms |
21348 KB |
Output is correct |
3 |
Correct |
1645 ms |
21516 KB |
Output is correct |
4 |
Correct |
1449 ms |
21620 KB |
Output is correct |
5 |
Correct |
952 ms |
21908 KB |
Output is correct |
6 |
Correct |
1512 ms |
21908 KB |
Output is correct |
7 |
Correct |
1554 ms |
21908 KB |
Output is correct |
8 |
Correct |
1396 ms |
21908 KB |
Output is correct |
9 |
Correct |
948 ms |
21908 KB |
Output is correct |
10 |
Correct |
1525 ms |
21908 KB |
Output is correct |
11 |
Correct |
1576 ms |
21908 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
18 ms |
21908 KB |
Output is correct |
2 |
Correct |
5613 ms |
112124 KB |
Output is correct |
3 |
Execution timed out |
6060 ms |
112708 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
6050 ms |
114004 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |