Submission #95196

#TimeUsernameProblemLanguageResultExecution timeMemory
95196win11905Lightning Rod (NOI18_lightningrod)C++11
100 / 100
1467 ms190300 KiB
/** * code generated by JHelper * More info: https://github.com/AlexeyDmitriev/JHelper * @author win11905 */ #include <bits/stdc++.h> #define all(x) (x).begin(), (x).end() #define vi vector<int> #define iii tuple<int, int, int> #define long long long #define pii pair<int, int> #define x first #define y second using namespace std; const long MOD = 1e9+7, LINF = 1e18 + 1e16; const int INF = 1e9+1; const double EPS = 1e-10; const int dx[4] = {-1, 0, 1, 0}, dy[4] = {0, 1, 0, -1}; int n; stack<pii> stk; bool check_cover(pii a, pii b) { return abs(a.x - b.x) <= a.y - b.y; } void fastscan(int &x) { bool neg=false; register int c; x =0; c=getchar(); if(c=='-') { neg = true; c=getchar(); } for(;(c>47 && c<58);c=getchar()) x = (x<<1) + (x<<3) +c -48; if(neg) x *=-1; } int32_t main() { fastscan(n); vector<pii> vec; vec.reserve(n+5); for(int i = 0, a, b; i < n; ++i) { fastscan(a); fastscan(b); vec.emplace_back(a, b); } for(auto v : vec) { if(stk.empty()) { stk.emplace(v); continue; } if(check_cover(stk.top(), v)) continue; while(!stk.empty() && check_cover(v, stk.top())) stk.pop(); stk.emplace(v); } printf("%d\n", (int)stk.size()); }
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...