// 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'
// #define int ll
using namespace std;
typedef long long ll;
typedef long double ld;
typedef string str;
typedef pair<ll, ll> pll;
typedef pair<int, int> pii;
const ll Mod = 1000000007LL;
const int N = 6e3 + 10;
const int Q = 3e6 + 10;
const int Inf = 2'000'000'100;
const ll Log = 30;
// X : X + T;
// Y : X - T;
vector<ll> cx, cy;
void Add(ll x, ll y){ cx.pb(x); cy.pb(y); }
void Uni(vector<ll>& C){
sort(all(C));
C.resize(unique(all(C)) - C.begin());
}
void Init(){ Uni(cx); Uni(cy); }
pii Get(ll x, ll y){
x = lower_bound(all(cx), x) - cx.begin();
y = lower_bound(all(cy), y) - cy.begin();
return {x, y};
}
ll T[N], T2[N], A[N], B[N], P[Q], X[Q];
ll C[N];
ll up[N][N], rt[N][N];
ll dp[N][N];
int32_t main(){
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int n, q;
cin >> n >> q;
assert(q == 1);
// for(int i = -3000; i <= 6000; i++) Add(i, i);
for(int i = 1; i <= n; i++){
cin >> T[i] >> A[i] >> B[i] >> C[i];
T2[i] = abs(A[i] - B[i]) + T[i];
C[i] /= 2;
Add(T[i] + A[i], T[i] - A[i]);
Add(T2[i]+ B[i],T2[i] - B[i]);
}
// Add(Q, Q);
Add(Inf, Inf);
for(int i = 1; i <= q; i++){
cin >> P[i] >> X[i];
Add(P[i] + X[i], P[i] - X[i]);
}
Init();
for(int i = 1; i <= n; i++){
pii st = Get(T[i] + A[i], T[i] - A[i]);
pii fn = Get(T2[i]+ B[i],T2[i] - B[i]);
// cerr <<
if(st.F == fn.F){
for(int _i = st.S; _i < fn.S; _i++)
up[st.F][_i] = max(up[st.F][_i], C[i]);
} else {
for(int _i = st.F; _i < fn.F; _i++)
rt[_i][st.S] = max(rt[_i][st.S], C[i]);
}
}
int nx = cx.size(), ny = cy.size();
for(int i = nx - 2; i >= 0; i--)
for(int j = ny - 2; j >= 0; j--)
dp[i][j] = max(1ll * up[i][j] * (cy[j + 1] - cy[j]) + dp[i][j + 1], 1ll * rt[i][j] * (cx[i + 1] - cx[i]) + dp[i + 1][j]);
for(int i = 1; i <= q; i++){
// if(abs(P[i] + X[i]) > 3000 || abs(P[i] - X[i]) > 3000){
// cout << "0\n";
// continue;
// }
pii st = Get(P[i] + X[i], P[i] - X[i]);
assert(cx[st.F] == P[i] + X[i]);
assert(cy[st.S] == P[i] - X[i]);
cout << dp[st.F][st.S] << '\n';
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
40 ms |
332 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
301 ms |
302660 KB |
Output is correct |
2 |
Correct |
349 ms |
302024 KB |
Output is correct |
3 |
Correct |
284 ms |
305988 KB |
Output is correct |
4 |
Correct |
3 ms |
792 KB |
Output is correct |
5 |
Correct |
300 ms |
239988 KB |
Output is correct |
6 |
Correct |
241 ms |
209432 KB |
Output is correct |
7 |
Correct |
294 ms |
239632 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
301 ms |
302660 KB |
Output is correct |
2 |
Correct |
349 ms |
302024 KB |
Output is correct |
3 |
Correct |
284 ms |
305988 KB |
Output is correct |
4 |
Correct |
3 ms |
792 KB |
Output is correct |
5 |
Correct |
300 ms |
239988 KB |
Output is correct |
6 |
Correct |
241 ms |
209432 KB |
Output is correct |
7 |
Correct |
294 ms |
239632 KB |
Output is correct |
8 |
Runtime error |
39 ms |
332 KB |
Execution killed with signal 6 |
9 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
301 ms |
302660 KB |
Output is correct |
2 |
Correct |
349 ms |
302024 KB |
Output is correct |
3 |
Correct |
284 ms |
305988 KB |
Output is correct |
4 |
Correct |
3 ms |
792 KB |
Output is correct |
5 |
Correct |
300 ms |
239988 KB |
Output is correct |
6 |
Correct |
241 ms |
209432 KB |
Output is correct |
7 |
Correct |
294 ms |
239632 KB |
Output is correct |
8 |
Runtime error |
39 ms |
332 KB |
Execution killed with signal 6 |
9 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
40 ms |
332 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |