Submission #549682

#TimeUsernameProblemLanguageResultExecution timeMemory
549682yoavLBoat (APIO16_boat)C++14
9 / 100
2097 ms171844 KiB
#include <iostream> #include <vector> #include <algorithm> #include <string> #include <set> #include <unordered_set> #include <map> #include <unordered_map> #include <queue> #include <stack> #include <bitset> #include <math.h> #include <fstream> #include <iomanip> #include <functional> #include <numeric> #include <chrono> #include <random> using namespace std; using ll = long long; using ld = long double; using vll = vector<ll>; using vvll = vector<vll>; using vvvll = vector<vvll>; using vvvvll = vector<vvvll>; using vb = vector<bool>; using vvb = vector<vb>; using vvvb = vector<vvb>; using vld = vector<ld>; using vvld = vector<vld>; using vstr = vector<string>; using pll = pair<ll, ll>; using vpll = vector<pll>; using vvpll = vector<vpll>; using pb = pair<bool, bool>; using vpb = vector<pb>; using vvpb = vector<vpb>; using vi = vector<int>; using vvi = vector<vi>; using pi = pair<int, int>; using vpi = vector<pi>; const ll inf = (ll)2e18; const ll mod = (ll)(1e9 + 7); #define FAST ios_base::sync_with_stdio(0) #define FASTIN cin.tie(0) #define FASTOUT cout.tie(0) #define upmin(a, b) (a) = min((a), (b)) #define upmax(a, b) (a) = max((a), (b)) #define pr(x) cout << x << endl #define prv(v) for(auto it : v) cout << it << " "; cout << endl; #define prvv(v) for(auto it : v) { for(auto it2 : it) cout << it2 << " "; cout << endl; } cout << endl; #define spr(x) cout << x << " " #define DBG_FLAG (1) // toggle to switch between bebug mode and solution mode #ifdef DBG_FLAG #define wpr(x) cout << #x << " = " << (x) << endl; #define wprv(v) cout << #v << ": " << endl; for(auto it : v) cout << it << " "; cout << endl; #define wprvv(v) cout << #v << ": " << endl; for(auto it : v) { for(auto it2 : it) cout << it2 << " "; cout << endl; } cout << endl; #define wspr(x) cout << #x << ": " << x << " " #endif #ifndef DBG_FLAG #define wpr(x) #define wprv(v) #define wprvv(v) #define wspr(x) #endif #define rep(i, s, e) for(ll i = s; i < e; i++) #define all(x) (x).begin(), (x).end() #define pb push_back const ll maxV = 1e6; ll n; vll a, b; //vll dp; map<ll, ll> dp; void solve() { cin >> n; a.resize(n), b.resize(n); rep(i, 0, n) cin >> a[i] >> b[i]; //dp.resize(maxV, 0); dp[0] = 1; rep(i, 0, n) { ll sum = 0; //rep(j, 0, a[i]) sum += dp[j]; for (auto it : dp) { if (it.first >= a[i]) break; sum += it.second; } rep(j, a[i], b[i] + 1) { ll add = dp[j]; dp[j] = (dp[j] + sum) % mod; sum += add; } } ll ans = 0; /* rep(i, 0, maxV) { ans = (ans + dp[i]) % mod; } */ for (auto it : dp) { ans = (ans + it.second) % mod; } ans = (ans - 1 + mod) % mod; pr(ans); } int main() { FAST; FASTIN; FASTOUT; solve(); } /* 2 1 2 2 3 */
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...