#include <bits/stdc++.h>
#define pii pair<int, int>
#define f first
#define s second
#define pb push_back
#define mp make_pair
#define ll long long
#define ld long double
#define sz(v) int(v.size())
#define all(v) v.begin(), v.end()
#define vec vector<int>
#define dead not_bad
#define left not_right
#define y1 what
using namespace std;
const int N = (int) 3e4 + 10;
const int M = (int) 2e4 + 10;
const ll LINF = (ll) 1e18;
const int INF = (int) 1e9 + 7;
const double PI = 3.14159265359;
const double EPS = (double) 1e-9;
int nx[8] = {-1, -2, -2, -1, 1, 1, 2, 2};
int ny[8] = {-2, -1, 1, 2, -2, 2, -1, 1};
int n, m;
int b[N], p[N];
int d[N];
bool u[N];
vec v[N];
int main() {
#define fn "teams"
#ifdef witch
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#else
//freopen(fn".in", "r", stdin);
//freopen(fn".out", "w", stdout);
#endif
cin >> n >> m;
for (int i = 0; i < N; i++) {
d[i] = INF;
}
for (int i = 0; i < m; i++) {
cin >> b[i] >> p[i];
v[b[i]].pb(i);
}
if (n <= 2000) {
d[b[0]] = 0;
for (int iter = 1; iter < n; iter++) {
int id = -1;
for (int i = 0; i < n; i++) {
if (!u[i] && (id == -1 || d[id] > d[i])) {
id = i;
}
}
if (id == -1 || d[id] == INF)
break;
if (id == b[1])
break;
u[id] = 1;
for (auto it : v[id]) {
for (int x = id, step = 0; x < n; x += p[it], ++step) {
if (d[id] + step < d[x]) {
d[x] = d[id] + step;
}
}
for (int x = id, step = 0; x >= 0; x -= p[it], ++step) {
if (d[id] + step < d[x]) {
d[x] = d[id] + step;
}
}
}
}
cout << d[b[1]];
return 0;
}
d[0] = 0;
for (int iter = 1; iter < m; iter++) {
int id = -1;
for (int i = 0; i < m; i++) {
if (!u[i] && (id == -1 || d[id] > d[i])) {
id = i;
}
}
if (id == -1 || d[id] == INF)
break;
if (id == 1)
break;
u[id] = 1;
for (int x = b[id], step = 0; x < n; x += p[id], ++step) {
for (auto it : v[x]) {
if (d[id] + step < d[it]) {
d[it] = d[id] + step;
}
}
}
for (int x = b[id], step = 0; x >= 0; x -= p[id], ++step) {
for (auto it : v[x]) {
if (d[id] + step < d[it]) {
d[it] = d[id] + step;
}
}
}
}
if (d[1] == INF)
d[1] = -1;
cout << d[1];
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
1144 KB |
Output is correct |
2 |
Correct |
2 ms |
1216 KB |
Output is correct |
3 |
Correct |
3 ms |
1216 KB |
Output is correct |
4 |
Incorrect |
2 ms |
1252 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
1256 KB |
Output is correct |
2 |
Correct |
2 ms |
1304 KB |
Output is correct |
3 |
Correct |
2 ms |
1316 KB |
Output is correct |
4 |
Incorrect |
2 ms |
1316 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
1444 KB |
Output is correct |
2 |
Correct |
2 ms |
1444 KB |
Output is correct |
3 |
Correct |
2 ms |
1444 KB |
Output is correct |
4 |
Incorrect |
2 ms |
1444 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
1444 KB |
Output is correct |
2 |
Correct |
2 ms |
1444 KB |
Output is correct |
3 |
Correct |
2 ms |
1444 KB |
Output is correct |
4 |
Incorrect |
2 ms |
1444 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
1444 KB |
Output is correct |
2 |
Correct |
2 ms |
1444 KB |
Output is correct |
3 |
Correct |
2 ms |
1444 KB |
Output is correct |
4 |
Incorrect |
2 ms |
1444 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |