# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
733998 | 2023-05-01T13:09:46 Z | lorenzoferrari | Fish (IOI08_fish) | C++17 | 532 ms | 58860 KB |
#include "bits/stdc++.h" using namespace std; static constexpr int N = 5e5+5; struct fish { int l; int g; bool operator<(const fish& oth) { return l < oth.l; } }; static int f[N]; // frq of each colour static int ff[N]; // frq of each frq set<int> s; // {j | ff[j] != 0} vector<int> pw[N]; static void inc(int c, int m) { if (ff[f[c]] == 1) { s.erase(f[c]); } --ff[f[c]]; ++f[c]; ++ff[f[c]]; if (ff[f[c]] == 1) { s.insert(f[c]); } pw[f[c]+1].push_back(pw[f[c]+1].back() * ((f[c]+1) % m) % m); } static void dec(int c, int m) { assert(f[c]); if (ff[f[c]] == 1) { s.erase(f[c]); } --ff[f[c]]; --f[c]; ++ff[f[c]]; if (ff[f[c]] == 1) { s.insert(f[c]); } pw[f[c]+1].push_back(pw[f[c]+1].back() * ((f[c]+1) % m) % m); } static int calc(int c, int m) { int ans = 1; for (int j : s) { ans = ans * pw[j+1][ff[j]] % m; } return ans; } int main() { for (int i = 0; i < N; ++i) { pw[i].emplace_back(1); } int n; cin >> n; int k; cin >> k; int m; cin >> m; vector<fish> a(n); for (int i = 0; i < n; ++i) { cin >> a[i].l >> a[i].g; --a[i].g; } sort(begin(a), end(a)); vector<int> last(k); for (int i = 0; i < n; ++i) { last[a[i].g] = i; } int ans = 0; vector<vector<int>> fut(n); for (int r = 0, l = 0; r < n; ++r) { if (last[a[r].g] != r) continue; while (2*a[l].l <= a[r].l) { if (last[a[l].g] <= r) { inc(a[l].g, m); } else { fut[last[a[l].g]].push_back(l); } ++l; } for (int i : fut[r]) { inc(a[i].g, m); } ans += calc(a[r].g, m); if (ans >= m) ans -= m; } cout << ans << "\n"; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 27 ms | 27708 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 29 ms | 27604 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 28 ms | 27712 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 26 ms | 27704 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 36 ms | 27724 KB | Output is correct |
2 | Incorrect | 41 ms | 27696 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 38 ms | 27712 KB | Output is correct |
2 | Incorrect | 394 ms | 51952 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 31 ms | 27740 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 28 ms | 27812 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 163 ms | 37356 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 36 ms | 27812 KB | Output is correct |
2 | Correct | 48 ms | 27956 KB | Output is correct |
3 | Incorrect | 46 ms | 27940 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 280 ms | 42928 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 386 ms | 54656 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 281 ms | 42064 KB | Output is correct |
2 | Incorrect | 463 ms | 52976 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 392 ms | 51364 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 466 ms | 54008 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 356 ms | 49312 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 463 ms | 54468 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 425 ms | 52572 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 532 ms | 58860 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |