QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#756667#7991. 最小环LinxTL 213ms58468kbC++232.8kb2024-11-16 21:29:282024-11-16 21:29:29

Judging History

你现在查看的是最新测评结果

  • [2024-11-16 21:29:29]
  • 评测
  • 测评结果:TL
  • 用时:213ms
  • 内存:58468kb
  • [2024-11-16 21:29:28]
  • 提交

answer

#include<bits/stdc++.h>
#define ll long long
#define ull unsigned ll
#define pii pair<int,ll>
#define node pair<ll,int>
using namespace std;
const int maxn=3e5+5,maxf=3e3+5;
vector<pii>e0[maxn],e1[maxn];
vector<pii>e[maxn];
int p[maxn];
// array<array<ll,maxf>,maxf>dis;
array<ll,maxn>dis;
vector<int>pos;
ll ans=1e18;
void dij(int x){
	priority_queue<node,vector<node>,greater<node>>q;
	q.push({0,x});
	for(auto u:pos)dis[u]=1e18;
	dis[x]=0;
	while(!q.empty()){
		int now=q.top().second;
		ll d=q.top().first;
		q.pop();
		if(dis[now]<d)continue;
		for(auto u:e[now]){
			if(dis[u.first]>u.second+d){
				dis[u.first]=u.second+d;
				q.push({dis[u.first],u.first});
				
			}
			if(u.first==x)ans=min(ans,u.second+d);
		}
	}
	// ans=min(ans,dis[x]);
}
int vis[maxn],inst[maxn];
ll dist[maxn];
bool cmp(pii x,pii y){
	return x.second<y.second;
}
void dfs(int x){
	if(vis[x])return;
	inst[x]=1;
	vis[x]=1;
	for(auto u:e0[x]){
		if(inst[u.first]){
			ans=min(ans,dist[x]-dist[u.first]+u.second);
			continue;
		}
		if(!vis[u.first]){
			dist[u.first]=u.second+dist[x];
			dfs(u.first);
		}
	}
	inst[x]=0;
}
int deg0[maxn],deg1[maxn];
void solve(){
	int n,m;
	cin>>n>>m;
	for(int i=1;i<=m;i++){
		int u,v,w;
		cin>>u>>v>>w;
		if(u==v){
			ans=min(ans,1ll*w);
			continue;
		}
		e0[u].push_back({v,w});
		e1[v].push_back({u,w});
		deg0[u]++;
		deg1[v]++;
	}
	for(int i=1;i<=n;i++){
		if(e0[i].empty()||e1[i].empty()){
			p[i]=1;
		}
		if(e0[i].size()==1&&e1[i].size()==1){
			// e[e1[i][0].first].push_back({e0[i][0].first,e0[i][0].second+e1[i][0].second});
			p[i]=1;
		}
	}
	queue<int>q;
	for(int i=1;i<=n;i++){
		dfs(i);
		if((deg0[i]==0||deg1[i]==0||deg0[i]+deg1[i]==1)&&!p[i]){
			p[i]=1;
			q.push(i);
		}
	}
	while(!q.empty()){
		int now=q.front();q.pop();
		for(auto u:e0[now]){
			int i=u.first;
			deg1[i]--;
			if((deg0[i]==0||deg1[i]==0||deg0[i]+deg1[i]==1)&&!p[i]){
				p[i]=1;
				q.push(i);
			}
		}
		for(auto u:e1[now]){
			int i=u.first;
			deg0[i]--;
			if((deg0[i]==0||deg1[i]==0||deg0[i]+deg1[i]==1)&&!p[i]){
				p[i]=1;
				q.push(i);
			}
		}
	}
	for(int i=1;i<=n;i++){
		if(!p[i]){
			map<int,int>mp;
			sort(e0[i].begin(),e0[i].end(),cmp);
			for(auto u:e0[i]){
				int flag=0,t=u.first;
				if(mp[t])continue;
				mp[t]=1;
				ll d=u.second;
				while(p[t]){
					if(e0[t].empty()){flag=1;break;}
					d+=e0[t][0].second;
					t=e0[t][0].first;
				}
				if(flag)continue;
				e[i].push_back({t,d});
			}
			pos.push_back(i);
		}
	}
	for(int i=1;i<=n;i++){
		if(!p[i]){
			dij(i);
		}
	}
	if(ans==1e18)cout<<"-1\n\n\n";
	else cout<<ans<<"\n";

}
int main(){
    ios::sync_with_stdio(0),cin.tie(0);
    int t=1;
    // cin>>t;
    while(t--)solve();
    return 0;
}
/*
n*3/2<=n+1500
m>=n*3/2
n<=3000
*/

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 5708kb

input:

4 6
1 2 1
4 3 3
4 1 9
2 4 1
3 1 2
3 2 6

output:

7

result:

ok single line: '7'

Test #2:

score: 0
Accepted
time: 0ms
memory: 5560kb

input:

1 0

output:

-1



result:

ok single line: '-1'

Test #3:

score: 0
Accepted
time: 0ms
memory: 7720kb

input:

1 1
1 1 1

output:

1

result:

ok single line: '1'

Test #4:

score: 0
Accepted
time: 87ms
memory: 58468kb

input:

258420 258419
33061 33062 767169384
212916 212917 1741339
229881 229882 896760805
173467 173468 273055172
233189 233190 800433307
10157 10158 126766550
174605 174606 552176083
224030 224031 886617880
229102 229103 783848581
67588 67589 510826095
233648 233649 879695751
214453 214454 867104578
153140...

output:

-1



result:

ok single line: '-1'

Test #5:

score: 0
Accepted
time: 157ms
memory: 39956kb

input:

248016 248896
82688 82755 592665252
202847 203260 294408121
26821 28237 269132335
150967 152178 3125829
246069 247390 29492546
7470 7673 55843492
33975 35414 442802995
28451 28948 193736988
34484 34637 84441058
60168 60309 501991354
79579 79844 26854803
239672 239706 111702667
73548 73658 149840530
...

output:

98674714245

result:

ok single line: '98674714245'

Test #6:

score: 0
Accepted
time: 164ms
memory: 43556kb

input:

270530 271285
80489 81855 218173724
188930 190845 783975756
29830 30626 22189315
234320 234472 70840355
198096 198272 300313423
224194 226906 105128197
115010 115834 37228105
134788 135583 18647938
257292 257358 98569041
146988 147215 69398857
248752 250002 409565478
62128 63751 839744551
121918 122...

output:

133486910467

result:

ok single line: '133486910467'

Test #7:

score: 0
Accepted
time: 166ms
memory: 39796kb

input:

222087 223141
123107 123811 2984035
216346 217464 675263
139741 141286 892140
77973 78018 453931100
38603 39546 157182459
13105 14616 775862
97035 97704 379136464
86254 88311 84193802
83968 84398 246202498
152486 160164 65619516
73213 73517 1129576
15618 16541 498613468
192241 195576 889879
21363 21...

output:

47599478278

result:

ok single line: '47599478278'

Test #8:

score: 0
Accepted
time: 168ms
memory: 39924kb

input:

212718 214066
104602 105717 148385760
163427 165307 437059346
108663 111803 784753745
15490 15784 789609
77598 80118 53908869
97776 98040 78287597
26994 27717 989577
134781 134919 531908
22362 24185 185680
114422 114890 609661
192852 192861 155477
45695 45800 35773
150695 152662 511678590
101629 102...

output:

36329947627

result:

ok single line: '36329947627'

Test #9:

score: 0
Accepted
time: 132ms
memory: 32900kb

input:

166349 167207
127268 127447 264589535
87716 91194 596943
123233 126065 170996332
16886 20295 35862710
4657 7035 31814455
95412 96577 195164337
17282 19855 200600035
18848 20733 547079078
139859 141952 197062
124361 126887 37905401
30749 32439 248082130
115409 121655 13113841
85640 88061 989595
74722...

output:

30821798636

result:

ok single line: '30821798636'

Test #10:

score: 0
Accepted
time: 213ms
memory: 48824kb

input:

289406 290248
136815 139417 24401
82238 82679 391891
117261 117722 23784755
45898 47276 91613
19042 20538 139326255
90781 91014 33771
173238 174945 166532570
64778 65593 89778641
107363 112432 3864090
260499 261031 165160
167079 167190 807727902
15135 17610 819060894
46707 48909 252893
51782 55878 3...

output:

61125659219

result:

ok single line: '61125659219'

Test #11:

score: -100
Time Limit Exceeded

input:

246266 246265
67999 29611 208851615
22833 19844 11567655
78556 60887 111689338
95799 91984 129780604
41384 117633 410486433
7780 17854 417509938
16799 26207 657779642
94022 203027 902990247
41361 49284 914930989
188504 211149 506036119
55526 231127 316210314
179380 117042 590986492
198142 119962 623...

output:

-1



result: