QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#309882#8136. Rebellious Edgeucup-team484#WA 42ms27232kbC++171.4kb2024-01-20 21:57:462024-01-20 21:57:47

Judging History

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

  • [2024-01-20 21:57:47]
  • 评测
  • 测评结果:WA
  • 用时:42ms
  • 内存:27232kb
  • [2024-01-20 21:57:46]
  • 提交

answer

#include <bits/stdc++.h>
#define sz(x) (int)(x).size()
#define all(x) (x).begin(), (x).end()
#define st first
#define nd second
using namespace std;
typedef long long ll;
const ll mod = 1e16 + 7;
const int N = 1e6 + 5;
vector<pair<int, ll>> adj[N];

void solve() {
	int n, m; cin >> n >> m;
	for (int i = 0; i < n; i++)
		adj[i].clear();
	array<ll, 3> e;
	e[2] = mod;
	for (int i = 0; i < m; i++) {
		int u, v, w; cin >> u >> v >> w;
		u--, v--;
		if (u > v)
			e = {u, v, w};
		else
			adj[v].push_back({u, w});
	}
	ll ans = 0;
	for (int i = 1; i < n; i++) {
		ll val = mod;
		for (auto [j, w]: adj[i])
			val = min(val, w);
		ans = min(mod, ans + val);
	}
	ll ans2 = e[2];
	vector<int> par(n), mn(n);
	vector<ll> out(n, mod);
	mn[e[1]] = e[1];
	for (int i = 1; i < n; i++) {
		if (i == e[1] || i == e[0])
			continue;
		ll val = mod;
		for (auto [j, w]: adj[i]) {
			if (w < val) {
				val = w;
				par[i] = j;
				mn[i] = mn[j];
			}
		}
		if (e[1] < i && i < e[0]) {
			for (auto [j, w]: adj[i]) {
				if (j < e[1])
					out[i] = min(out[i], w - val);
				else
					out[i] = min(out[i], out[j]);
			}
		}
		ans2 += val;
	}
	ll val = mod;
	for (auto [j, w]: adj[e[0]])
		val = min(val, w + out[j]);
	ans2 += val;
	if (e[1] == 0)
		ans2 = mod;
	cout << min(ans, ans2) << "\n";
}

int main() {
	ios_base::sync_with_stdio(false); cin.tie(0);
	int t; cin >> t; while (t--) solve();
}

詳細信息

Test #1:

score: 100
Accepted
time: 3ms
memory: 27232kb

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: 42ms
memory: 27012kb

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
1039553235
793861088
635606317
1051598350
612891589
1265994009
517769091
1678219738
1556463491
93634961
960978736
984886788
1696503797
1258199648
1969660290
1431417780
1515267731
977157479
1937478556
654475526
1401...

result:

wrong answer 9th numbers differ - expected: '1034153425', found: '1039553235'