結果
問題 | No.2395 区間二次変換一点取得 |
ユーザー | ochiaigawa |
提出日時 | 2023-07-28 22:24:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,066 bytes |
コンパイル時間 | 2,282 ms |
コンパイル使用メモリ | 204,272 KB |
実行使用メモリ | 6,144 KB |
最終ジャッジ日時 | 2024-10-06 19:36:02 |
合計ジャッジ時間 | 5,606 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 4 ms
5,248 KB |
testcase_12 | AC | 22 ms
5,248 KB |
testcase_13 | AC | 234 ms
6,016 KB |
testcase_14 | AC | 228 ms
6,144 KB |
testcase_15 | AC | 232 ms
6,016 KB |
testcase_16 | AC | 236 ms
6,144 KB |
testcase_17 | AC | 232 ms
6,016 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; struct BIT { private: vector<int> bit; int N; public: BIT(int size) { N = size; bit.resize(N + 1); } void add(int a, int w) { for(int x = a; x <= N; x += x & -x) { bit[x] += w; } } int sum(int a) { int ret = 0; for (int x = a; x > 0; x -= x & -x) { ret += bit[x]; } return ret; } }; int main() { long long N, B, Q; cin >> N >> B >> Q; BIT fw(N + 5); vector<long long> sq(Q + 1), s(Q + 1), t(Q + 2); sq[0] = 0; for(long long i = 1; i <= Q; i++) { sq[i] = i * i % B; s[i] = i % B; } t[2] = 1; for(int i = 3; i <= Q + 2; i++) { t[i] = t[i - 1] * 3 % B; } while(Q--) { int L, M, R; cin >> L >> M >> R; fw.add(L, 1); fw.add(R + 1, -1); int x = fw.sum(M) + 1; long long y; if(x == 1) { y = 1; } else { y = t[x] * (sq[x] + s[x] + 1) % B; } int z = t[x + 1]; cout << x % B << ' ' << y % B << ' ' << z % B << '\n'; } return 0; }