QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#886105 | #3302. Just Meeting | yhddd | WA | 1ms | 14200kb | C++14 | 2.3kb | 2025-02-06 20:33:39 | 2025-02-06 20:33:44 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
#define mod 998244353ll
#define pii pair<int,int>
#define fi first
#define se second
#define mems(x,y) memset(x,y,sizeof(x))
#define pb push_back
#define db double
using namespace std;
const int maxn=300010;
const int inf=1e18;
inline int read(){
int x=0,f=1;
char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
while(ch>='0'&&ch<='9'){x=(x<<3)+(x<<1)+(ch-48);ch=getchar();}
return x*f;
}
bool Mbe;
int n,m,ans;
struct edge{
int u,v,w;
}g[maxn];
int f[maxn],siz[maxn];
int fd(int x){
if(f[x]==x)return x;
return f[x]=fd(f[x]);
}
bool vis[maxn];
int head[maxn],tot;
struct nd{
int nxt,to,w;
}e[maxn<<1];
void add(int u,int v,int w){e[++tot]={head[u],v,w};head[u]=tot;}
int to[maxn][19],w[maxn][19],dep[maxn];
int calc(int u,int v){
int res=inf;
if(dep[u]<dep[v])swap(u,v);
for(int i=18;~i;i--)if(dep[to[u][i]]>=dep[v])res=min(res,w[u][i]),u=to[u][i];
if(u==v)return res;
for(int i=18;~i;i--)if(to[u][i]!=to[v][i])u=to[u][i],v=to[v][i],res=min({res,w[u][i],w[v][i]});
return min({res,w[u][0],w[v][0]});
}
void dfs(int u){
dep[u]=dep[to[u][0]]+1;
for(int i=1;i<=18;i++)to[u][i]=to[to[u][i-1]][i-1],w[u][i]=min(w[u][i-1],w[to[u][i-1]][i-1]);
for(int i=head[u];i;i=e[i].nxt){
int v=e[i].to;if(v==to[u][0])continue;
to[v][0]=u,w[v][0]=e[i].w;dfs(v);
}
}
void work(){
n=read();m=read();
for(int i=1;i<=m;i++)g[i]={read(),read(),read()};
for(int i=1;i<=n;i++)f[i]=i,siz[i]=1;
sort(g+1,g+m+1,[&](edge u,edge v){return u.w>v.w;});
for(int i=1;i<=m;i++){
int u=g[i].u,v=g[i].v;
if(fd(u)!=fd(v)){
add(u,v,g[i].w),add(v,u,g[i].w);
u=fd(u),v=fd(v);
(ans+=siz[u]*siz[v]%mod*g[i].w)%=mod;
// cout<<siz[u]<<" "<<siz[v]<<" "<<g[i].w<<"\n";
f[v]=u,siz[u]+=siz[v];
vis[i]=1;
}
}
int sum=n*(n-1)/2;
for(int i=1;i<=n;i++)if(f[i]==i)sum-=siz[i]*(siz[i]-1)/2;
ans+=sum;
dfs(1);
for(int i=1;i<=m;i++)if(!vis[i]){
if(calc(g[i].u,g[i].v)!=g[i].w){puts("-1");return ;}
}
printf("%lld\n",ans);
}
// \
444
bool Med;
int T;
signed main(){
// freopen(".in","r",stdin);
// freopen(".out","w",stdout);
// ios::sync_with_stdio(0);
// cin.tie(0);cout.tie(0);
// cerr<<(&Mbe-&Med)/1048576.0<<" MB\n";
T=1;
while(T--)work();
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 12112kb
input:
4 2 1 2 5 2 4 3
output:
14
result:
ok single line: '14'
Test #2:
score: 0
Accepted
time: 0ms
memory: 11852kb
input:
4 4 1 2 10 1 3 20 2 4 30 3 4 40
output:
-1
result:
ok single line: '-1'
Test #3:
score: 0
Accepted
time: 1ms
memory: 11856kb
input:
130 247 21 130 9826251 113 14 6000798 73 55 6258090 52 88 9123162 58 57 1750276 41 40 1630609 104 103 1750276 5 61 8486225 47 52 9243976 65 64 746976 130 87 6380955 26 25 2351803 71 70 189606 47 49 4015464 49 48 1630609 87 63 5089117 124 58 9959337 73 20 3496765 78 34 7789869 69 68 2994591 96 95 208...
output:
-1
result:
ok single line: '-1'
Test #4:
score: 0
Accepted
time: 0ms
memory: 11980kb
input:
207 19 11 10 732134 5 4 444528 13 12 723858 17 16 64959 10 9 133983 9 8 661210 4 3 416495 15 14 740303 18 17 566802 19 18 692914 14 13 602221 16 15 144822 6 5 776502 7 6 570929 3 2 60173 20 19 486747 2 1 779525 8 7 606746 12 11 643657
output:
37712525
result:
ok single line: '37712525'
Test #5:
score: 0
Accepted
time: 0ms
memory: 11852kb
input:
186 269 142 141 5373289 66 65 4910100 110 109 7759528 94 93 2809357 50 49 1261298 2 1 5272448 146 145 602071 68 67 5272448 118 117 4022083 137 174 9510724 120 119 7808412 115 97 9942092 151 150 1261298 43 119 9650949 44 43 8315877 113 66 9166118 30 29 9014984 143 142 4621918 162 69 9459621 172 171 2...
output:
-1
result:
ok single line: '-1'
Test #6:
score: 0
Accepted
time: 0ms
memory: 12112kb
input:
291 20 4 3 2808901 10 9 573699 20 19 616858 8 7 1248928 9 8 483833 17 16 700554 6 5 455036 3 2 1779562 5 4 632027 11 10 1801411 15 14 661123 14 13 1224817 18 17 2104486 19 18 4193045 7 6 1540920 16 15 2216428 21 20 1670480 12 11 2433712 13 12 1935714 2 1 1079356
output:
140337842
result:
ok single line: '140337842'
Test #7:
score: 0
Accepted
time: 0ms
memory: 13908kb
input:
127 151 83 82 215103 52 51 128121 77 76 83069 87 40 2112995 10 9 158296 6 84 7414107 19 18 158296 126 125 180932 8 7 315382 4 3 158296 124 123 588493 61 60 154283 46 45 389333 52 27 1675967 90 89 552426 41 40 230260 41 36 8189327 48 47 257287 111 110 441447 35 34 158296 24 23 224466 37 36 6463039 16...
output:
-1
result:
ok single line: '-1'
Test #8:
score: 0
Accepted
time: 0ms
memory: 14160kb
input:
73 10 3 2 12608 11 10 82292 8 7 1581658 6 5 223002 4 3 131058 7 6 220313 10 9 1595495 5 4 722402 2 1 465004 9 8 942590
output:
13029938
result:
ok single line: '13029938'
Test #9:
score: 0
Accepted
time: 0ms
memory: 12116kb
input:
211 50 43 42 3354312 7 6 3216910 2 1 696369 25 24 1222424 51 50 2830101 35 34 1821861 33 32 1214397 39 38 4011606 28 27 1492176 46 45 1632220 5 4 1008492 17 16 2242236 18 17 2119279 21 20 1611326 47 46 1010910 23 22 4364287 19 18 364960 27 26 1487304 8 7 3361466 44 43 1691055 26 25 2407192 22 21 429...
output:
516852022
result:
ok single line: '516852022'
Test #10:
score: 0
Accepted
time: 0ms
memory: 11852kb
input:
200 265 21 61 4529486 55 54 3359530 139 138 2904011 142 141 2149180 102 101 1858872 88 87 3350392 198 197 1922055 100 99 1469856 37 36 3979928 45 44 3590367 81 80 952405 158 157 2527671 119 49 5353622 60 59 952405 185 184 3801765 11 10 1348271 72 195 4752711 40 39 4263919 187 199 9582700 18 12 89877...
output:
-1
result:
ok single line: '-1'
Test #11:
score: -100
Wrong Answer
time: 0ms
memory: 14200kb
input:
194 192 86 85 3151812 67 66 3860526 101 100 3954555 15 14 2724016 157 156 2680597 31 30 1716299 129 128 845790 166 165 2257479 11 10 2302409 126 125 3609729 4 3 585471 96 95 611939 186 185 4710372 97 96 3562335 57 56 2024321 16 15 1388484 147 146 220786 63 62 4662185 161 160 4252836 109 108 4706726 ...
output:
187029609
result:
wrong answer 1st lines differ - expected: '3181762668', found: '187029609'