#include <bits/stdc++.h>
using namespace std;
const int N=1e5+1;
const int M=2e5+1;
int n,m;
unordered_map<int,long long>mp[N];
vector<pair<int,pair<int,long long>>>adj[N];
long long dp[N];
int main()
{
cin>>n>>m;
for(int i=1; i<=n; i++)
dp[i]=1e18;
for(int i=1; i<=m; i++)
{
int a,b,color,c;
cin>>a>>b>>color>>c;
adj[a].push_back({b,{color,c}});
adj[b].push_back({a,{color,c}});
mp[a][color]+=c;
mp[b][color]+=c;
}
dp[1]=0;
priority_queue<pair<long long,int>> pq;
pq.push({0,1});
while(!pq.empty())
{
int cost=-pq.top().first;
int nod=pq.top().second;
if(nod==n)
{
cout<<cost<<'\n';
return 0;
}
pq.pop();
for(auto u:adj[nod])
{
int cost1=u.second.second;
int cost2=mp[nod][u.second.first]-cost1;
cost1=min(cost1,cost2);
if(dp[u.first]>cost1+dp[nod])
{
dp[u.first]=cost1+dp[nod];
pq.push({-dp[u.first],u.first});
}
}
}
if(dp[n]==1e18)
{
cout<<-1<<'\n';
return 0;
}
cout<<dp[n]<<'\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
8792 KB |
Output is correct |
2 |
Correct |
2 ms |
8796 KB |
Output is correct |
3 |
Correct |
2 ms |
8796 KB |
Output is correct |
4 |
Correct |
2 ms |
8796 KB |
Output is correct |
5 |
Correct |
2 ms |
8796 KB |
Output is correct |
6 |
Execution timed out |
3121 ms |
1059472 KB |
Time limit exceeded |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
77 ms |
19800 KB |
Output is correct |
2 |
Correct |
37 ms |
14416 KB |
Output is correct |
3 |
Correct |
105 ms |
23044 KB |
Output is correct |
4 |
Correct |
81 ms |
16980 KB |
Output is correct |
5 |
Incorrect |
278 ms |
42720 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
8792 KB |
Output is correct |
2 |
Correct |
2 ms |
8796 KB |
Output is correct |
3 |
Correct |
2 ms |
8796 KB |
Output is correct |
4 |
Correct |
2 ms |
8796 KB |
Output is correct |
5 |
Correct |
2 ms |
8796 KB |
Output is correct |
6 |
Execution timed out |
3121 ms |
1059472 KB |
Time limit exceeded |
7 |
Halted |
0 ms |
0 KB |
- |