// vaziat meshki-ghermeze !
#include <bits/stdc++.h>
#define pb push_back
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define debug(x) cerr << #x << " : " << x << '\n'
using namespace std;
typedef long long ll;
typedef long double ld;
typedef string str;
typedef pair<int, int> pii;
const ll Mod = 1000000007LL;
const int N = 4e5 + 10;
const ll Inf = 2242545357980376863LL;
const ll Log = 30;
int to[N], c[N], p[N], m = 2;
vector<int> G[N];
ll dis[2][N]; // 0 -> Null, 1 -> fixed
ll sm[N], cost[N];
int nl[N];
int la[N], cn[N];
map<int, int> mp0[N], mp1[N];
int main(){
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int n, _m;
cin >> n >> _m;
int u, v;
for(int i = 0; i < _m; i++){
cin >> u >> v >> c[m] >> p[m];
c[m + 1] = c[m]; p[m + 1] = p[m];
to[m] = v; to[m + 1] = u;
G[u].pb(m);
G[v].pb(m + 1);
m += 2;
}
to[0] = 1;
to[1] = -1;
c[0] = c[1] = _m + 2;
for(int i = 1; i <= n; i++){
for(auto e : G[i]){
sm[c[e]] += p[e];
}
for(auto e : G[i]){
cost[e] = sm[c[e]] - p[e];
}
for(auto e : G[i]){
sm[c[e]] -= p[e];
}
}
memset(dis, 31, sizeof dis);
dis[0][0] = 0;
set< pair<ll, pii> > st;
st.insert({0, {0, 0}});
ll ans = Inf;
memset(la, -1, sizeof la);
while(!st.empty()){
pii fr = st.begin() -> S;
st.erase(st.begin());
ll d = dis[fr.F][fr.S];
int ed = fr.S;
u = to[fr.S];
if(fr.F == 0){
nl[u] ++;
if(nl[u] > 2) continue;
} else {
// if(mp1[u].count(c[ed])){
// if(mp1[u][c[ed]] == 2) continue;
// mp1[u][c[ed]] ++;
// } else {
// }
cn[u] ++;
if(cn[u] > 2) continue;
// if(la[u] == c[ed]) continue;
// la[u] = c[ed];
// cn[u] ++;
// if(cn[u] > 2) continue;
}
// cerr << "## " << d << ' ' << ed << ' ' << u << '\n';
for(auto nx : G[u]){
if((nx ^ 1) == ed) continue;
// cerr << "! " << ' ' << nx << '\n';
for(int ch = 0; ch < 2; ch ++){
ll cst = cost[nx];
if(ch == 0) cst = p[nx];
if(ch == 1 && c[ed] == c[nx] && fr.F == 0)
cst -= p[ed];
// cerr << "^ " << dis[c]
if(dis[ch][nx] > d + cst){
st.erase({dis[ch][nx], {ch, nx}});
dis[ch][nx] = d + cst;
st.insert({dis[ch][nx], {ch, nx}});
}
}
}
if(u == n) ans = min(ans, d);
}
cout << (ans == Inf ? -1 : ans) << '\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
41 ms |
55108 KB |
Output is correct |
2 |
Correct |
41 ms |
55028 KB |
Output is correct |
3 |
Correct |
41 ms |
55244 KB |
Output is correct |
4 |
Correct |
42 ms |
55144 KB |
Output is correct |
5 |
Correct |
35 ms |
55120 KB |
Output is correct |
6 |
Correct |
44 ms |
55084 KB |
Output is correct |
7 |
Correct |
41 ms |
55340 KB |
Output is correct |
8 |
Correct |
42 ms |
55212 KB |
Output is correct |
9 |
Incorrect |
45 ms |
55528 KB |
Output isn't correct |
10 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
481 ms |
73072 KB |
Output is correct |
2 |
Correct |
185 ms |
62232 KB |
Output is correct |
3 |
Correct |
941 ms |
91264 KB |
Output is correct |
4 |
Correct |
270 ms |
65964 KB |
Output is correct |
5 |
Incorrect |
1128 ms |
94284 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
41 ms |
55108 KB |
Output is correct |
2 |
Correct |
41 ms |
55028 KB |
Output is correct |
3 |
Correct |
41 ms |
55244 KB |
Output is correct |
4 |
Correct |
42 ms |
55144 KB |
Output is correct |
5 |
Correct |
35 ms |
55120 KB |
Output is correct |
6 |
Correct |
44 ms |
55084 KB |
Output is correct |
7 |
Correct |
41 ms |
55340 KB |
Output is correct |
8 |
Correct |
42 ms |
55212 KB |
Output is correct |
9 |
Incorrect |
45 ms |
55528 KB |
Output isn't correct |
10 |
Halted |
0 ms |
0 KB |
- |