結果
問題 | No.896 友達以上恋人未満 |
ユーザー | risujiroh |
提出日時 | 2019-09-27 22:02:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,706 bytes |
コンパイル時間 | 1,642 ms |
コンパイル使用メモリ | 175,884 KB |
実行使用メモリ | 300,032 KB |
最終ジャッジ日時 | 2024-09-24 12:42:52 |
合計ジャッジ時間 | 4,113 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,812 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 229 ms
194,552 KB |
testcase_06 | AC | 324 ms
194,420 KB |
testcase_07 | AC | 197 ms
194,548 KB |
testcase_08 | AC | 197 ms
194,544 KB |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using lint = long long; template<class T = int> using V = vector<T>; template<class T = int> using VV = V< V<T> >; V<> sieve(int n) { V<bool> b((n + 1) / 3, true); V<> res{2, 3}; for (int p = 5, d = 2; p * p < n; p += d, d = 6 - d) if (b[p / 3]) { for (int i = 5 * p, d = 2 * p; i < n; i += d, d = 6 * p - d) b[i / 3] = false; } for (int p = 5, d = 2; p < n; p += d, d = 6 - d) if(b[p / 3]) res.push_back(p); while (!res.empty() and res.back() >= n) res.pop_back(); return res; } template<class T> void fmult(V<T>& a, const V<>& ps) { int n = a.size(); for (int p : ps) { for (int i = (n - 1) / p; i; --i) { a[i] += a[i * p]; } } } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int m, n; cin >> m >> n; lint mulX, addX, mulY, addY, MOD; cin >> mulX >> addX >> mulY >> addY >> MOD; V<> x(n), y(n), a(n), b(n); for (int i = 0; i < m; ++i) cin >> x[i]; for (int i = 0; i < m; ++i) cin >> y[i]; for (int i = 0; i < m; ++i) cin >> a[i]; for (int i = 0; i < m; ++i) cin >> b[i]; for (int i = m; i < n; ++i) { x[i] = x[i - 1] * mulX + addX & MOD - 1; y[i] = y[i - 1] * mulY + addY & MOD - 1; a[i] = (a[i - 1] * mulX + addX - 1 & MOD - 1) + 1; b[i] = (b[i - 1] * mulY + addY - 1 & MOD - 1) + 1; } V<lint> z(MOD); for (int i = 0; i < n; ++i) { z[x[i]] += y[i]; } fmult(z, sieve(MOD)); lint acc = 0; for (int i = 0; i < n; ++i) { lint res = 0; if (a[i] < MOD) { res += z[a[i]]; } if ((lint)a[i] * b[i] < MOD) { res -= z[a[i] * b[i]]; } if (i < m) { cout << res << '\n'; } acc ^= res; } cout << acc << '\n'; }