QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#631229#8038. Hammer to FallIron_gainerWA 151ms17872kbC++201.8kb2024-10-11 23:07:462024-10-11 23:07:47

Judging History

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

  • [2024-10-11 23:07:47]
  • 评测
  • 测评结果:WA
  • 用时:151ms
  • 内存:17872kb
  • [2024-10-11 23:07:46]
  • 提交

answer

#include<iostream>
#include<cstdio>
#include<cmath>
#include<vector>
#include<queue>
#include<map>
#include<stack>
#include<array>
#include<set>
#include<algorithm>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
void speed()
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
}
vector<pii>edge[100005];
multiset<ll>s[100005];
ll a[100005];
ll b[100005];
ll in[100005];
ll dp[100005];
constexpr ll mod = 998244353;
int main()
{
	ll n, m, q;
	cin >> n >> m >> q;
	ll B = sqrt(m);
	for (int i = 1; i <= n; i++)
	{
		cin >> a[i];
	}
	for (int i = 1; i <= m; i++)
	{
		ll u, v, w;
		cin >> u >> v >> w;
		edge[u].push_back({ v,w });
		edge[v].push_back({ u,w });
		in[u]++;
		in[v]++;
	}
	for (int i = 1; i <= q; i++)
	{
		cin >> b[i];
	}
	for (int i = 1; i <= n; i++)
		sort(edge[i].begin(), edge[i].end(), [&](pii a, pii b) {return in[a.first] > in[b.first]; });
	for (int i = 1; i <= n; i++)
	{
		if (in[i]>B)
		{
			for (auto j : edge[i])
			{
				if (in[j.first] <= B)
					s[i].insert(j.second);
			}
		}
	}
	for (int i = q; i >= 1; i--)
	{
		if (in[b[i]]<=B)
		{
			for (auto j : edge[b[i]])
			{
				if (in[j.first] > B)s[j.first].erase(s[j.first].find(dp[b[i]]+j.second));
			}
			dp[b[i]] = 1e18;
			for (auto j : edge[b[i]])
			{
				dp[b[i]] = min(dp[b[i]], dp[j.first] + j.second);
			}
			for (auto j : edge[b[i]])
			{
				if (in[j.first] > B)s[j.first].insert(dp[b[i]] + j.second);
			}
		}
		else
		{
			dp[b[i]] = *s[b[i]].begin();
			for (auto j : edge[b[i]])
			{
				if (in[j.first] <= B) break;
				dp[b[i]] = min(dp[b[i]], dp[j.first] + j.second);
			}
		}
	}
	ll ans = 0;
	for (int i = 1; i <= n; i++)
	{
		ans = (ans + dp[i] % mod * a[i] % mod) % mod;
	}
	cout << ans << endl;
	return 0;
}

详细

Test #1:

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

input:

3 2 2
1 1 1
2 3 10
1 2 1
3 2

output:

12

result:

ok single line: '12'

Test #2:

score: 0
Accepted
time: 3ms
memory: 11748kb

input:

2 1 10
5000 5000
1 2 10000
1 2 2 1 2 2 1 1 1 2

output:

550000000

result:

ok single line: '550000000'

Test #3:

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

input:

10 10 10
5 14 99 14 18 4 58 39 48 60
2 4 4
6 9 56
10 8 34
7 5 96
1 3 26
3 7 92
6 8 4
5 1 72
7 6 39
7 2 93
8 8 9 10 2 2 5 9 2 3

output:

8810

result:

ok single line: '8810'

Test #4:

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

input:

100 500 10000
89 61 65 85 89 2 32 97 13 70 29 86 68 74 84 64 54 39 26 84 56 95 73 11 70 26 60 40 84 58 68 33 65 71 55 2 11 71 49 85 14 59 38 11 60 8 81 78 27 32 52 49 35 94 62 72 64 50 12 45 77 74 92 67 92 38 81 39 12 29 60 70 53 33 25 60 7 83 4 85 47 32 13 58 85 86 44 68 44 1 81 62 97 7 66 62 5 16 ...

output:

609241

result:

ok single line: '609241'

Test #5:

score: 0
Accepted
time: 120ms
memory: 17872kb

input:

100000 100000 100000
134299012 740620432 241626312 533601686 901212368 274154852 46613593 72208460 685661661 930069933 934386896 140544225 900179749 8735320 54649110 922673925 450551589 517879800 773426781 410723403 783459037 344315202 75310230 122339501 113898579 646500753 18238713 119326471 969272...

output:

641103242

result:

ok single line: '641103242'

Test #6:

score: -100
Wrong Answer
time: 151ms
memory: 13912kb

input:

448 100000 100000
411038009 847809848 901622409 143987890 230747977 330204397 58948994 635255827 124637955 446506876 693363517 282765360 687916399 598850473 404480258 958197468 332242997 7338874 321860348 37384562 440321061 434694843 935461053 803393359 852456369 428568442 233194935 663299156 907095...

output:

0

result:

wrong answer 1st lines differ - expected: '571525504', found: '0'