//#pragma GCC optimize("Ofast,no-stack-protector")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,avx2,tune=native")
#pragma GCC optimize("unroll-loops")
#pragma GCC optimize("fast-math")
/*#pragma GCC optimize("section-anchors")
#pragma GCC optimize("profile-values,profile-reorder-functions,tracer")
#pragma GCC optimize("vpt")
#pragma GCC optimize("rename-registers")
#pragma GCC optimize("move-loop-invariants")
#pragma GCC optimize("unswitch-loops")
#pragma GCC optimize("function-sections")
#pragma GCC optimize("data-sections")
#pragma GCC optimize("branch-target-load-optimize")
#pragma GCC optimize("branch-target-load-optimize2")
#pragma GCC optimize("btr-bb-exclusive")*/
//#pragma comment(linker, "/STACK:367077216")
#define _CRT_SECURE_NO_WARNINGS
#include <chrono>
#include <set>
#include <map>
#include <deque>
#include <string>
#include <cstdint>
#include <cmath>
#include <queue>
#include <cassert>
#include <random>
#include <bitset>
#include <iomanip>
#include <numeric>
#include <time.h>//////////////
#include <ctime>
#include <string>
#include <cstdio>
#include <vector>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#include <unordered_map>
#include <unordered_set>
//++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++
//#define endl '\n'
#define mp make_pair
#define pbc push_back
#define pob pop_back()
#define empb emplace_back
#define queuel queue<long long>
#define sqr(a) ((a) * (a))
#define sqrl(a) (ll(a)*ll(a))
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define pin(p) cin >> p.first >> p.second;
#define uniq(a) sort(all(a));(a).resize(unique(all(a)) - a.begin());
#define rev(v) reverse(v.begin(), v.end());
#define sout(s, c) for (auto i : s) cout << i << c;
#define pout(p) cout << p.first << " " << p.second;
#define er(v, l, r) erase(v.begin() + l, v.begin() + r);
#define vin(v) for (ll i = 0; i < v.size(); ++i) cin >> v[i];
#define vout(v, c) for (int i = 0; i < v.size(); ++i) cout << v[i] << c;
#define pushi(v, a) for (int i = 0; i < a.size(); ++i) v.push_back(a[i]);
#define fastio() ios_base::sync_with_stdio(0); cout.tie(0); cin.tie(0); srand(time(NULL))
#define dab(v) for(auto i:v)cout<<i<<' ';
#define sp system("pause")
//++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++
using namespace std;
//++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
//++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++--++
mt19937 rnd(time(0) + 228 + 'k' + 'e' + 'k' + 'e' + 'r' + 'o' + 'f' + 'e' + 'y');
const ld EPS = 1e-5;//(cos,-sin), (sin, cos)
bool checkprime(int x)
{
for (int i = 2; i * i <= x; ++i) if (x % i == 0) return 0;
return 1;
}
const ld PI = acos(-1);
const int MOD7 = 1000000007;
const int MOD9 = 1000000009;
const ll INF = 1e18;
int mod = MOD9;
const int inf = 1e9;
const int MAXN = 202;
int n, l;
int x[MAXN];
int t[MAXN];
int dist(int i, int j)
{
return min(abs(x[i] - x[j]), l - abs(x[i] - x[j]));
}
ll dp[MAXN][MAXN][MAXN][2];
ll calc(int l, int r, int am, int flag)
{
//if (l < r && 0 < l) return 1e18;
if (dp[l][r][am][flag] != -1) return dp[l][r][am][flag];
if (!am) return 1e18;
if (l == r) return 1e18;
bool flg = 0;
ll ansos = 1e18;
if (l < r)
{
if (!flag && calc(l + 1, r, am - 1, 0) + dist(l + 1, l) <= t[l])
{
ansos = min(ansos, calc(l + 1, r, am - 1, 0) + dist(l, l + 1));
}
if (!flag && calc(l + 1, r, am - 1, 1) + dist(r, l) <= t[l])
{
ansos = min(ansos, calc(l + 1, r, am - 1, 1) + dist(r, l));
}
if (flag && calc(l, r - 1, am - 1, 0) + dist(l, r) <= t[r])
{
ansos = min(ansos, calc(l, r - 1, am - 1, 0) + dist(l, r));
}
if (flag && calc(l, r - 1, am - 1, 1) + dist(r, r - 1) <= t[r])
{
ansos = min(ansos, calc(l, r - 1, am - 1, 1) + dist(r, r - 1));
}
if (!flag)
ansos = min({ ansos, calc(l + 1,r,am,0) + dist(l,l + 1), calc(l + 1,r,am,1) + dist(r,l) });
else
ansos = min({ ansos, calc(l, r - 1, am, 0) + dist(r, l), calc(l, r - 1, am, 1) + dist(r - 1, r) });
}
if (l > r)
{
if (!flag)ansos = min({ ansos, calc((l + 1) % (n + 1),r,am,0) + dist(l,(l + 1) % (n + 1)), calc((l + 1) % (n + 1),r,am,1) + dist(r,l) });
else ansos = min({ ansos, calc(l, (r + n) % (n + 1), am, 0) + dist(l, r), calc(l, (r + n) % (n + 1), am, 1) + dist((r + n) % (n + 1), r) });
if (!flag && calc((l + 1) % (n + 1), r, am - 1, 0) + dist(l, (l + 1) % (n + 1)) <= t[l])
{
ansos = min(ansos, calc((l + 1) % (n + 1), r, am - 1, 0) + dist(l, (l + 1) % (n + 1)));
}
if (!flag && calc((l + 1) % (n + 1), r, am - 1, 1) + dist(r, l) <= t[l])
{
ansos = min(ansos, calc((l + 1) % (n + 1), r, am - 1, 1) + dist(r, l));
}
if (flag && calc(l, (r + n) % (n + 1), am - 1, 0) + dist(l, r) <= t[r])
{
ansos = min(ansos, calc(l, (r + n) % (n + 1), am - 1, 0) + dist(l, r));
}
if (flag && calc(l, (r + n) % (n + 1), am - 1, 1) + dist(r, (r + n) % (n + 1)) <= t[r])
{
ansos = min(ansos, calc(l, (r + n) % (n + 1), am - 1, 1) + dist(r, (r + n) % (n + 1)));
}
}
dp[l][r][am][flag] = ansos;
return ansos;
}
signed main()
{
fastio();
cin >> n >> l;
for (int i = 1; i <= n; ++i) cin >> x[i];
for (int i = 1; i <= n; ++i) cin >> t[i];
for (int i = 0; i < MAXN; ++i) for (int j = 0; j < MAXN; ++j) for (int k = 0; k < MAXN; ++k) for (int kek = 0; kek < 2; ++kek) dp[i][j][k][kek] = -1;
dp[0][0][0][0] = dp[0][0][0][1] = 0;
for (int am = n; am >= 0; --am)
{
if (calc(0, n, am, 0) < 1e17 || calc(0, n, am, 1) < 1e17)
{
cout << am;
sp;
return 0;
}
for (int l = n; l >= 1; --l)
{
if (calc(l, l - 1, am, 0) < 1e17 || calc(l, l - 1, am, 1) < 1e17)
{
cout << am;
sp;
return 0;
}
}
}
cout << 0;
sp;
}
Compilation message
ho_t3.cpp: In function 'll calc(int, int, int, int)':
ho_t3.cpp:99:7: warning: unused variable 'flg' [-Wunused-variable]
bool flg = 0;
^~~
ho_t3.cpp: In function 'int main()':
ho_t3.cpp:63:18: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result [-Wunused-result]
#define sp system("pause")
~~~~~~^~~~~~~~~
ho_t3.cpp:161:4: note: in expansion of macro 'sp'
sp;
^~
ho_t3.cpp:63:18: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result [-Wunused-result]
#define sp system("pause")
~~~~~~^~~~~~~~~
ho_t3.cpp:169:5: note: in expansion of macro 'sp'
sp;
^~
ho_t3.cpp:63:18: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result [-Wunused-result]
#define sp system("pause")
~~~~~~^~~~~~~~~
ho_t3.cpp:175:2: note: in expansion of macro 'sp'
sp;
^~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
66 ms |
129400 KB |
Output is correct |
2 |
Correct |
65 ms |
129400 KB |
Output is correct |
3 |
Incorrect |
66 ms |
129400 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
66 ms |
129400 KB |
Output is correct |
2 |
Correct |
65 ms |
129400 KB |
Output is correct |
3 |
Incorrect |
66 ms |
129400 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
66 ms |
129400 KB |
Output is correct |
2 |
Correct |
65 ms |
129400 KB |
Output is correct |
3 |
Incorrect |
66 ms |
129400 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
66 ms |
129400 KB |
Output is correct |
2 |
Correct |
65 ms |
129400 KB |
Output is correct |
3 |
Incorrect |
66 ms |
129400 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |