QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#538945#8136. Rebellious EdgePhantomThreshold#WA 56ms3752kbC++201.3kb2024-08-31 13:38:032024-08-31 13:38:08

Judging History

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

  • [2024-08-31 13:38:08]
  • 评测
  • 测评结果:WA
  • 用时:56ms
  • 内存:3752kb
  • [2024-08-31 13:38:03]
  • 提交

answer

#include<bits/stdc++.h>
#include<ext/pb_ds/tree_policy.hpp>
#include<ext/pb_ds/assoc_container.hpp>
#define ll long long
#define int long long
using namespace std;

const int maxn = 210000;
const int inf = 1e9;

int n,m;
vector< pair<int,int> >E[maxn];

signed main()
{
	ios_base::sync_with_stdio(false);
	
	int Tcase; cin>>Tcase;
	while(Tcase--)
	{
		cin>>n>>m;
		for(int i=1;i<=n;i++)
		{
			vector< pair<int,int> >_;
			E[i].swap(_);
		}
		int spu,spv,spw;
		for(int i=1;i<=m;i++)
		{
			int u,v,w; cin>>u>>v>>w;
			if(u<v) E[v].emplace_back(u,w);
			else spu=u,spv=v,spw=w;
		}
		
		vector<int>go(n+5),goc(n+5);
		int ans=0;
		go[1]=0,goc[1]=0;
		for(int i=2;i<=n;i++)
		{
			int mn=inf;
			for(auto [j,c]:E[i]) 
			{
				if(mn>c)
					mn=c,go[i]=j,goc[i]=c;
			}
			ans+=mn;
		}
		
		if(spv!=1)
		{
			int sum= ans-goc[spv]+spw;
			
			vector<int>V,vis(n+5);
			for(int i=spu;i;i=go[i])
			{
				V.push_back(i);
				vis[i]=1;
				if(i==spv) break;
			}
			int temp=0;
			if(V.back()==spv)
			{
				temp=inf;
				for(auto i:V) if(i!=spv)
				{
					for(auto [j,c]:E[i]) if(j!=go[i] && vis[j]==0)
					{
						temp=min(temp, c-goc[i]);
					}
				}
			}
			
			ans=min(ans, sum+temp );
		}
		cout<<ans<<'\n';
	}
	
	return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 3752kb

input:

3
5 6
1 2 4
1 3 2
2 3 0
3 4 1
4 5 1
5 2 1
4 4
1 2 4
1 3 6
1 4 8
4 2 1000000
3 3
1 2 100
2 1 10
2 3 1000

output:

5
18
1100

result:

ok 3 number(s): "5 18 1100"

Test #2:

score: -100
Wrong Answer
time: 56ms
memory: 3600kb

input:

50000
4 5
2 4 998973548
2 3 501271695
4 1 778395982
1 4 32454891
1 2 757288934
4 5
1 4 720856669
2 3 665098951
3 4 407461517
2 1 866914401
1 2 457859826
4 5
1 2 75288664
1 4 624893594
3 2 458973866
2 4 769074655
2 3 834773751
4 5
2 3 237060634
2 4 297307882
3 4 200383586
1 2 42856502
3 1 16574713
4 ...

output:

1291015520
1530420294
1534956009
480300722
1366795927
1541095843
2493849488
858095911
1034153425
793861088
605832428
1051598350
612891589
1265994009
517769091
1678219738
1556463491
93634961
960978736
984886788
1696503797
1002892611
1969660290
1431417780
1515267731
977157479
1937478556
654475526
1401...

result:

wrong answer 301st numbers differ - expected: '1442045931', found: '1328599284'