# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
415551 |
2021-06-01T08:35:14 Z |
amoo_safar |
Robot (JOI21_ho_t4) |
C++17 |
|
1220 ms |
56840 KB |
// 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];
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(la[u] == c[ed]) continue;
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;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
11 ms |
17584 KB |
Output is correct |
2 |
Correct |
14 ms |
17484 KB |
Output is correct |
3 |
Correct |
11 ms |
17580 KB |
Output is correct |
4 |
Correct |
11 ms |
17484 KB |
Output is correct |
5 |
Correct |
11 ms |
17484 KB |
Output is correct |
6 |
Correct |
13 ms |
17588 KB |
Output is correct |
7 |
Correct |
18 ms |
17704 KB |
Output is correct |
8 |
Correct |
12 ms |
17612 KB |
Output is correct |
9 |
Incorrect |
15 ms |
18056 KB |
Output isn't correct |
10 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
518 ms |
35496 KB |
Output is correct |
2 |
Correct |
128 ms |
24720 KB |
Output is correct |
3 |
Correct |
971 ms |
53628 KB |
Output is correct |
4 |
Correct |
296 ms |
28208 KB |
Output is correct |
5 |
Incorrect |
1220 ms |
56840 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
11 ms |
17584 KB |
Output is correct |
2 |
Correct |
14 ms |
17484 KB |
Output is correct |
3 |
Correct |
11 ms |
17580 KB |
Output is correct |
4 |
Correct |
11 ms |
17484 KB |
Output is correct |
5 |
Correct |
11 ms |
17484 KB |
Output is correct |
6 |
Correct |
13 ms |
17588 KB |
Output is correct |
7 |
Correct |
18 ms |
17704 KB |
Output is correct |
8 |
Correct |
12 ms |
17612 KB |
Output is correct |
9 |
Incorrect |
15 ms |
18056 KB |
Output isn't correct |
10 |
Halted |
0 ms |
0 KB |
- |