//#pragma GCC optimize("O3,unroll-loops,Ofast")
//#pragma GCC target("avx2,bmi,bmi2,popcnt,lzcnt")
#include <bits/stdc++.h>
//#include <cstdio>
//#include <iostream>
using namespace std;
#define MAX 100007
#define pb push_back
//#define mp make_pair
//#define int long long
#define f first
#define s second
#define vi vector<int>
#define pii pair<int,int>
#define si set<int>
#define vpii vector<pair<int,int>>
const int mod = 1e9+7;
//const int INF = 1e18;
// myMap.begin()->first : key
// myMap.begin()->second : value
int epow(int a,int b){int ans=1;while(b){if(b&1) ans*=a;a*=a;ans%=mod;a%=mod;b>>=1;}return ans%mod;}
int gcd(int a,int b) {if(a<b)swap(a,b);while(b){int tmp=b;b=a%b;a=tmp;}return a;}
int mul(int a,int b){return ((a%mod)*(b%mod))%mod;}
int dx[] = {-1, 0, 1, 0};
int dy[] = {0, -1, 0, 1};
#define N 50
int solve(int n, int m, int (*edges)[2], int* l, int k, int *entry)
{
vector<pii> adj[n+5];
for(int i=0;i<m;i++)
{
adj[edges[i][1]].pb({edges[i][0],l[i]}); adj[edges[i][0]].pb({edges[i][1],l[i]});
}
// vi exits(k);
// for(int i=0;i<k;i++) entry[i]=entry[i];
priority_queue<pii,vector<pii>,greater<pii>> pq;
vector<priority_queue<int>> dp(n+2);
vi vis(n+2);
for(int i=0;i<k;i++)
{
pq.push({0,entry[i]});
vis[entry[i]]=1;
dp[entry[i]].push(0); dp[entry[i]].push(0);
}
while(pq.size())
{
int node = pq.top().s, cost=pq.top().f;
pq.pop();
if(vis[node]>1) continue;
if(vis[node]++) continue;
if(node==0LL) return cost;
//if(cost != )
for (auto child : adj[node]) {
int ch = child.f, wt = child.s;
if (dp[ch].size() == 2) {
// sort (all(dp[ch]));
if (cost+wt < dp[ch].top()) {
dp[ch].pop();
dp[ch].push(cost+wt);
pq.push({cost+wt, ch});
}
}
else {
dp[ch].push(cost+wt);
pq.push({cost+wt, ch});
}
}
}
cout << "BAD\n";
return -1;
}
int travel_plan(int n, int m, int (*r)[2], int* l, int k, int *p) {
return solve(n, m, r, l, k, p);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |