# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
287701 |
2020-08-31T22:37:57 Z |
Namnamseo |
Toll (APIO13_toll) |
C++17 |
|
2500 ms |
44280 KB |
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <unistd.h>
#include <algorithm>
#include <numeric>
#include <cstring>
#include <vector>
#include <cstdio>
using namespace std;
using ll=long long;
using pp=pair<int,int>;
#define rep(i,n) for(int i=0;i<n;++i)
#define rrep(i,n) for(int i=1;i<=n;++i)
#define pb push_back
#define eb emplace_back
int n, m, k;
char *I;
int ri() { int ret=0; while (*I<48||*I>=58) ++I; while(*I>=48&&*I<58) ret=ret*10+(*(I++)-48); return ret; }
char Y[20];
struct E { int a, b, c; bool operator<(const E& r)const{ return c<r.c; } } ek[20], eu[300010], et[500]; int eun, etn;
vector<pp> e0[int(1e6)+1];
struct UF { int p[100010]; void init(int s=n){iota(p+1,p+s+1,1);} int r(int x){return x==p[x]?x:(p[x]=r(p[x])); }
int join(int a,int b){ a=r(a);b=r(b); if(a==b) return 0;p[a]=b;return 1; }} uf, uf2;
int g[100010],r[100010],gn;
ll u[100010];
vector<pp> G[50];
vector<int> T[100010];
int P[100010];
ll s[100010];
void dfs(int x){
s[x]=u[x];
for(int y:T[x]) if(P[x]!=y) {
P[y]=x; dfs(y);
s[x]+=s[y];
}
}
ll S[50];
int gp[50], gl[50];
int kc[50], kcn;
int ans[50];
void gd(int x) {
S[x] = s[r[x]];
for(auto [y, d]:G[x]) if (y != gp[x]) {
gp[y] = x; gl[y] = gl[x]+1;
if (d) { kc[kcn++] = y; }
gd(y); S[x] += S[y];
}
}
int glca(int a, int b) {
if (gl[a] > gl[b]) return glca(b, a);
while (gl[a]!=gl[b]) b=gp[b];
while (a!=b) a=gp[a], b=gp[b];
return a;
}
void ae(int a, int b, int c) {
G[a].pb({b, c});
G[b].pb({a, c});
}
bool seen[50][50];
int main() {
setbuf(stdout, 0);
{ static char buf[100]; using Z=struct stat*; fstat(0, (Z)buf); I=(char*)mmap(0,Z(buf)->st_size,1,2,0,0);}
n = ri(); m = ri(); k = ri();
rep(i,m) {
int a = ri(), b = ri(), c = ri();
e0[c].eb(a, b);
}
rep(i,k) ek[i].a=ri(), ek[i].b=ri();
rrep(i,n) u[i]=ri();
uf.init(); uf2.init(); rep(i,k) uf.join(ek[i].a,ek[i].b);
rrep(i, int(1e6)) {
for(auto [a, b]:e0[i]) {
if (uf.join(a, b)) {
uf2.join(a, b);
T[a].pb(b);
T[b].pb(a);
} else {
eu[eun++]={a, b, i};
}
}
}
rrep(i,n) if (uf2.p[i]==i) r[g[i]=++gn]=i;
rrep(i,n) if (uf2.p[i]!=i) g[i]=g[uf2.r(i)];
rrep(i, gn) dfs(r[i]);
rep(i, eun) {
int a=g[eu[i].a], b=g[eu[i].b];
if (a>b) swap(a, b);
if (!seen[a][b]) seen[a][b]=1, et[etn++]={a, b, eu[i].c};
}
ll O = 0;
const int inf = 0x7f7f7f7f;
for(int m=1; m<(1<<k); ++m) {
uf.init(gn);
rrep(x, gn) G[x].clear();
bool mf=0;
int cc=gn;
rep(j,k) if (1&(m>>j)) {
auto &e = ek[j];
int a=g[e.a], b=g[e.b];
if(a==b || !uf.join(a, b)) { mf=1; break; }
--cc;
ae(a, b, 1);
}
if (mf) continue;
rep(j, etn){
int a=et[j].a, b=et[j].b, &c=et[j].c;
if(uf.join(a, b)) {
ae(a, b, 0); --cc;
if (c>0) c=-c;
} else if (c<0) c=-c;
}
if (cc != 1) continue;
kcn = 0;
gp[g[1]] = 0; gl[g[1]] = 0;
gd(g[1]);
rrep(i, gn) ans[i] = inf;
rep(j, etn) if (et[j].c) {
int a=et[j].a, b=et[j].b, l = glca(a, b);
for(int x:{a, b}) {
while (x != l) {
ans[x] = min(ans[x], et[j].c);
x = gp[x];
}
}
}
ll ca = 0;
rep(i, kcn) ca += ans[kc[i]] * S[kc[i]];
O=max(O, ca);
}
for(gn=0;!gn||O;)Y[gn++]=48+O%10, O/=10;
reverse(Y,Y+gn); Y[gn]=10; write(1,Y,gn+1);
return 0;
}
Compilation message
toll.cpp: In function 'int main()':
toll.cpp:160:34: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
160 | reverse(Y,Y+gn); Y[gn]=10; write(1,Y,gn+1);
| ~~~~~^~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
20 ms |
26240 KB |
Output is correct |
2 |
Correct |
20 ms |
26240 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
20 ms |
26240 KB |
Output is correct |
2 |
Correct |
20 ms |
26240 KB |
Output is correct |
3 |
Correct |
21 ms |
26240 KB |
Output is correct |
4 |
Correct |
22 ms |
26216 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
20 ms |
26240 KB |
Output is correct |
2 |
Correct |
20 ms |
26240 KB |
Output is correct |
3 |
Correct |
21 ms |
26240 KB |
Output is correct |
4 |
Correct |
22 ms |
26216 KB |
Output is correct |
5 |
Correct |
23 ms |
26496 KB |
Output is correct |
6 |
Correct |
23 ms |
26624 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
20 ms |
26240 KB |
Output is correct |
2 |
Correct |
20 ms |
26240 KB |
Output is correct |
3 |
Correct |
21 ms |
26240 KB |
Output is correct |
4 |
Correct |
22 ms |
26216 KB |
Output is correct |
5 |
Correct |
23 ms |
26496 KB |
Output is correct |
6 |
Correct |
23 ms |
26624 KB |
Output is correct |
7 |
Correct |
270 ms |
44280 KB |
Output is correct |
8 |
Correct |
348 ms |
44280 KB |
Output is correct |
9 |
Correct |
332 ms |
44280 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
20 ms |
26240 KB |
Output is correct |
2 |
Correct |
20 ms |
26240 KB |
Output is correct |
3 |
Correct |
21 ms |
26240 KB |
Output is correct |
4 |
Correct |
22 ms |
26216 KB |
Output is correct |
5 |
Correct |
23 ms |
26496 KB |
Output is correct |
6 |
Correct |
23 ms |
26624 KB |
Output is correct |
7 |
Correct |
270 ms |
44280 KB |
Output is correct |
8 |
Correct |
348 ms |
44280 KB |
Output is correct |
9 |
Correct |
332 ms |
44280 KB |
Output is correct |
10 |
Correct |
1389 ms |
44280 KB |
Output is correct |
11 |
Execution timed out |
2576 ms |
44280 KB |
Time limit exceeded |
12 |
Halted |
0 ms |
0 KB |
- |