Submission #419616

#TimeUsernameProblemLanguageResultExecution timeMemory
419616amoo_safarBodyguard (JOI21_bodyguard)C++17
27 / 100
3160 ms827592 KiB
// 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 = 3 * (2802); 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); // debug(Inf); 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; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...