#pragma GCC optimize("O3")
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair < int, int > pii;
typedef pair < ll, ll > pll;
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define SZ(x) (int)x.size()
#define Mp make_pair
#define endl "\n"
#define fast_io ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define int ll
const int N = 6e3 + 10;
const int LOG = 20;
const ll mod = 1e9 + 7;
const ll inf = 1e18;
int n, q, T[N], T2[N], fir[N], sec[N], Qa[N], Qb[N], C[N], dp[N][N], R[N][N], U[N][N];
vector < int > cmx, cmy;
void Add(int a, int b)
{
cmx.push_back(a);
cmy.push_back(b);
}
inline int lwrx(int a) { return lower_bound(all(cmx), a) - cmx.begin(); }
inline int lwry(int a) { return lower_bound(all(cmy), a) - cmy.begin(); }
signed main()
{
fast_io;
cin >> n >> q;
for(int i = 1; i <= n; i ++)
{
cin >> T[i] >> fir[i] >> sec[i] >> C[i];
T2[i] = T[i] + abs(fir[i] - sec[i]);
C[i] >>= 1;
Add(T[i] + fir[i], T[i] - fir[i]);
Add(T2[i] + sec[i], T2[i] - sec[i]);
}
assert(q < N);
for(int i = 1; i <= q; i ++)
{
cin >> Qa[i] >> Qb[i];
Add(Qa[i] + Qb[i], Qa[i] - Qb[i]);
}
Add(inf, inf);
sort(all(cmx));
sort(all(cmy));
cmx.resize(unique(all(cmx)) - cmx.begin());
cmy.resize(unique(all(cmy)) - cmy.begin());
assert(SZ(cmx) < N);
assert(SZ(cmy) < N);
int sz1 = SZ(cmx), sz2 = SZ(cmy);
for(int i = 1; i <= n; i ++)
{
if(fir[i] < sec[i]) /// going up
{
int y = lwry(T[i] - fir[i]);
int l = lwrx(T[i] + fir[i]), r = lwrx(T2[i] + sec[i]);
for(int j = l; j < r; j ++)
{
U[j][y] = max(U[j][y], C[i]);
}
}
else /// going right
{
int x = lwrx(T[i] + fir[i]);
int l = lwry(T[i] - fir[i]), r = lwry(T2[i] - sec[i]);
for(int j = l; j < r; j ++)
{
R[x][j] = max(R[x][j], C[i]);
}
}
}
for(int i = sz1 - 1; ~i; i --)
{
for(int j = sz2 - 1; ~j; j --)
{
if(i + 1 < sz1)
{
dp[i][j] = max(dp[i][j], dp[i + 1][j] + U[i][j] * (cmx[i + 1] - cmx[i]));
}
if(j + 1 < sz2)
{
dp[i][j] = max(dp[i][j], dp[i][j + 1] + R[i][j] * (cmy[j + 1] - cmy[j]));
}
}
}
for(int i = 1; i <= q; i ++)
{
cout << dp[lwrx(Qa[i] + Qb[i])][lwry(Qa[i] - Qb[i])] << endl;
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
14 ms |
724 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
329 ms |
302640 KB |
Output is correct |
2 |
Correct |
272 ms |
302152 KB |
Output is correct |
3 |
Correct |
293 ms |
306112 KB |
Output is correct |
4 |
Correct |
3 ms |
852 KB |
Output is correct |
5 |
Correct |
284 ms |
240060 KB |
Output is correct |
6 |
Correct |
242 ms |
209476 KB |
Output is correct |
7 |
Correct |
315 ms |
239692 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
329 ms |
302640 KB |
Output is correct |
2 |
Correct |
272 ms |
302152 KB |
Output is correct |
3 |
Correct |
293 ms |
306112 KB |
Output is correct |
4 |
Correct |
3 ms |
852 KB |
Output is correct |
5 |
Correct |
284 ms |
240060 KB |
Output is correct |
6 |
Correct |
242 ms |
209476 KB |
Output is correct |
7 |
Correct |
315 ms |
239692 KB |
Output is correct |
8 |
Runtime error |
15 ms |
980 KB |
Execution killed with signal 6 |
9 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
329 ms |
302640 KB |
Output is correct |
2 |
Correct |
272 ms |
302152 KB |
Output is correct |
3 |
Correct |
293 ms |
306112 KB |
Output is correct |
4 |
Correct |
3 ms |
852 KB |
Output is correct |
5 |
Correct |
284 ms |
240060 KB |
Output is correct |
6 |
Correct |
242 ms |
209476 KB |
Output is correct |
7 |
Correct |
315 ms |
239692 KB |
Output is correct |
8 |
Runtime error |
15 ms |
980 KB |
Execution killed with signal 6 |
9 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
14 ms |
724 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |