Submission #781869

#TimeUsernameProblemLanguageResultExecution timeMemory
781869Charizard2021Pinball (JOI14_pinball)C++17
0 / 100
1 ms212 KiB
#include<bits/stdc++.h> using namespace std; #define IOS ios::sync_with_stdio(false);; cin.tie(NULL) void selfMax(long long& a, long long b){ a = max(a, b); } void selfMin(long long& a, long long b){ a = min(a, b); } template<typename T> istream& operator>>(istream& in, vector<T>& a) {for(auto &x : a) in >> x; return in;}; template<typename T1, typename T2> istream& operator>>(istream& in, pair<T1, T2>& x) {return in >> x.first >> x.second;} template<typename T1, typename T2> ostream& operator<<(ostream& out, const pair<T1, T2>& x) {return out << x.first << ' ' << x.second;} template<typename T> ostream& operator<<(ostream& out, vector<T>& a) {for(auto &x : a) out << x << ' '; return out;}; template<typename T> ostream& operator<<(ostream& out, vector<vector<T> >& a) {for(auto &x : a) out << x << '\n'; return out;}; template<typename T1, typename T2> ostream& operator<<(ostream& out, vector<pair<T1, T2> >& a) {for(auto &x : a) out << x << '\n'; return out;}; /* Use DSU dsu(n); */ struct DSU { vector<long long> e; DSU(long long n) { e = vector<long long>(n, -1); } // get representive component (uses path compression) long long get(long long x) { return e[x] < 0 ? x : e[x] = get(e[x]); } bool same_set(long long a, long long b) { return get(a) == get(b); } long long size(long long x) { return -e[get(x)]; } bool unite(long long x, long long y) { // union by size x = get(x), y = get(y); if (x == y) return false; if (e[x] > e[y]) swap(x, y); e[x] += e[y]; e[y] = x; return true; } }; /* Run with Bit<long long> BIT */ template <class T> class BIT { private: long long size; vector<T> bit; vector<T> arr; public: BIT(long long size) : size(size), bit(size + 1), arr(size) {} void upd(long long ind, long long val) { add(ind, val - arr[ind]); } void add(long long ind, long long val) { arr[ind] += val; ind++; for (; ind <= size; ind += ind & -ind) { bit[ind] += val; } } T pref_sum(long long ind) { ind++; T total = 0; for (; ind > 0; ind -= ind & -ind) { total += bit[ind]; } return total; } }; /* Change Comb for specific Seg tree probs, but run with Seg<long long> Seg; */ template<class T> struct Seg { const T ID = 1e18; T comb(T a, T b) { return min(a,b); } long long n; vector<T> seg; void init(long long _n) { n = _n; seg.assign(2*n,ID); } void pull(long long p) { seg[p] = comb(seg[2*p],seg[2*p+1]); } void upd(long long p, T val) { seg[p += n] = val; for (p /= 2; p; p /= 2) pull(p); } T query(long long l, long long r) { T ra = ID, rb = ID; for (l += n, r += n+1; l < r; l /= 2, r /= 2) { if (l&1) ra = comb(ra,seg[l++]); if (r&1) rb = comb(seg[--r],rb); } return comb(ra,rb); } }; int main() { int n, m; cin >> n >> m; vector<int> a(n), b(n), c(n); vector<long long> L(n), R(n), d(n); vector<int> total = {0, m-1}; for(int i = 0; i < n; i++) { cin >> a[i] >> b[i] >> c[i] >> d[i]; a[i]--; b[i]--; c[i]--; total.push_back(a[i]); total.push_back(b[i]); total.push_back(c[i]); } sort(total.begin(), total.end()); total.erase(unique(total.begin(), total.end()), total.end()); for(auto &x : a){ x = lower_bound(total.begin(), total.end(), x) - total.begin(); } for(auto &x : b){ x = lower_bound(total.begin(), total.end(), x) - total.begin(); } for(auto &x : c){ x = lower_bound(total.begin(), total.end(), x) - total.begin(); } int val = total.size(); for(int t = 0; t < 2; t++) { Seg<long long> st; st.init(val); st.upd(0, 0); for(int i = 0; i < n; i++) { L[i] = st.query(a[i], b[i]) + d[i]; st.upd(c[i], L[i]); a[i] = val - 1 - a[i]; b[i] = val - 1 - b[i]; c[i] = val - 1 - c[i]; swap(a[i], b[i]); } L.swap(R); } long long ans = 1e18; for(int i = 0; i < n; i++){ ans = min(ans, L[i] + R[i] - d[i]); } cout << (ans == 1e18 ? -1 : ans) << "\n"; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...