Submission #389843

#TimeUsernameProblemLanguageResultExecution timeMemory
389843osaaateiasavtnlFish (IOI08_fish)C++14
48 / 100
918 ms48212 KiB
#include <iostream> #include <cstdio> #include <cstdlib> #include <algorithm> #include <cmath> #include <vector> #include <set> #include <map> #include <unordered_set> #include <unordered_map> #include <queue> #include <ctime> #include <cassert> #include <complex> #include <string> #include <cstring> #include <chrono> #include <random> #include <bitset> #include <fstream> using namespace std; #define ii pair <int, int> #define app push_back #define all(a) a.begin(), a.end() #define bp __builtin_popcountll #define ll long long #define mp make_pair #define x first #define y second #define Time (double)clock()/CLOCKS_PER_SEC #define debug(x) std::cerr << #x << ": " << x << '\n'; #define FOR(i, n) for (int i = 0; i < n; ++i) #define FORN(i, n) for (int i = 1; i <= n; ++i) #define pb push_back #define trav(a, x) for (auto& a : x) using vi = vector<int>; template <typename T> std::istream& operator >>(std::istream& input, std::vector<T>& data) { for (T& x : data) input >> x; return input; } template <typename T> std::ostream& operator <<(std::ostream& output, const pair <T, T> & data) { output << "(" << data.x << "," << data.y << ")"; return output; } template <typename T> std::ostream& operator <<(std::ostream& output, const std::vector<T>& data) { for (const T& x : data) output << x << " "; return output; } ll div_up(ll a, ll b) { return a/b+((a^b)>0&&a%b); } // divide a by b rounded up ll div_down(ll a, ll b) { return a/b-((a^b)<0&&a%b); } // divide a by b rounded down ll math_mod(ll a, ll b) { return a - b * div_down(a, b); } #define tcT template<class T #define tcTU tcT, class U tcT> using V = vector<T>; tcT> void re(V<T>& x) { trav(a, x) cin >> a; } tcT> bool ckmin(T& a, const T& b) { return b < a ? a = b, 1 : 0; } // set a = min(a,b) tcT> bool ckmax(T& a, const T& b) { return a < b ? a = b, 1 : 0; } ll gcd(ll a, ll b) { while (b) { tie(a, b) = mp(b, a % b); } return a; } const int N = 5e5+7; int n, k, MOD; int tree[N << 2]; void setpoint(int v, int l, int r, int i, int x) { if (l == r) { tree[v] = x; return; } int m = (l + r) / 2; if (i <= m) { setpoint(v * 2 + 1, l, m, i, x); } else { setpoint(v * 2 + 2, m + 1, r, i, x); } tree[v] = tree[v * 2 + 1] * tree[v * 2 + 2] % MOD; } int get(int v, int tl, int tr, int l, int r) { if (tr < l || r < tl) return 1; if (l <= tl && tr <= r) return tree[v]; int m = (tl + tr) / 2; return get(v * 2 + 1, tl, m, l, r) * get(v * 2 + 2, m + 1, tr, l, r) % MOD; } vi who[N]; int pos[N]; void setpoint(int c, int x) { x %= MOD; setpoint(0, 0, k - 1, pos[c], x); } int get(int l, int r) { return get(0, 0, k - 1, l, r); } struct Event { int x; bool t; int c; }; signed main() { #ifdef LOCAL freopen("input.txt", "r", stdin); #else #define endl '\n' ios_base::sync_with_stdio(0); cin.tie(0); #endif cin >> n >> k >> MOD; FOR (i, (N << 2)) { tree[i] = 1; } const int INF = 2e9; vi r(k + 1, -INF); auto comp = [&] (const Event a, const Event b) { return a.x < b.x || (a.x == b.x && a.t < b.t); }; V <Event> sc; FOR (i, n) { int sz, c; cin >> sz >> c; sc.app({2 * sz, 0, c}); ckmax(r[c], sz); who[c].app(sz); } FORN (i, k) { sc.app({r[i], 1, i}); } sort(all(sc), comp); V <ii> ord; vi rs; FORN (c, k) { ord.app(mp(r[c], c)); rs.app(r[c]); } sort(all(ord)); sort(all(rs)); FOR (i, ord.size()) { pos[ord[i].y] = i; } vi used(k + 1), cur(k + 1); int ans = 0; trav (e, sc) { int col = e.c; if (e.t == 0) { cur[col]++; if (used[col]) { setpoint(col, cur[col] + 1); } } else { used[col] = 1; setpoint(col, cur[col] + 1); ans += tree[0]; ans %= MOD; } } trav (e, cur) { e = 0; } FOR (i, (N << 2)) { tree[i] = 1; } FORN (c, k) { sort(all(who[c])); } trav (e, sc) { int col = e.c; if (e.t == 0) { cur[col]++; setpoint(col, cur[col] + 1); } else { int eat = 0; while (2 * who[col][eat] <= r[col]) { eat++; } int alive = who[col][eat]; setpoint(col, cur[col] + 1); int right = lower_bound(all(rs), alive * 2) - rs.begin() - 1; ll L = get(0, pos[col] - 1); ll R = get(pos[col] + 1, right); ans += L * (R + MOD - 1); ans %= MOD; } } cout << ans << endl; }

Compilation message (stderr)

fish.cpp: In function 'int main()':
fish.cpp:32:37: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int>, std::allocator<std::pair<int, int> > >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   32 | #define FOR(i, n) for (int i = 0; i < n; ++i)
......
  162 |     FOR (i, ord.size()) {
      |          ~~~~~~~~~~~~~               
fish.cpp:162:5: note: in expansion of macro 'FOR'
  162 |     FOR (i, ord.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...
#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...
#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...