結果
問題 | No.896 友達以上恋人未満 |
ユーザー | Y17 |
提出日時 | 2019-09-27 23:15:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,698 ms / 3,500 ms |
コード長 | 1,427 bytes |
コンパイル時間 | 1,675 ms |
コンパイル使用メモリ | 168,940 KB |
実行使用メモリ | 81,536 KB |
最終ジャッジ日時 | 2024-09-25 01:45:23 |
合計ジャッジ時間 | 8,098 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 652 ms
36,352 KB |
testcase_06 | AC | 1,339 ms
36,352 KB |
testcase_07 | AC | 650 ms
36,352 KB |
testcase_08 | AC | 654 ms
36,352 KB |
testcase_09 | AC | 1,191 ms
69,120 KB |
testcase_10 | AC | 1,698 ms
81,536 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long int m, n, mulx, addx, muly, addy, MOD; int z[(1 << 24)] = {}; int x[1010]; int y[1010]; int a[1010]; int b[1010]; void make(){ int xx = 0; int yy = 0; for(int i = 0;i < m;i++){ xx = x[i]; yy = y[i]; z[xx] += yy; } for(int i = m;i < n;i++){ xx = (xx * mulx + addx) % MOD; yy = (yy * muly + addy) % MOD; z[xx] += yy; } for(int i = 1;i < MOD;i++){ for(int j = i*2;j < MOD;j+=i){ z[i] += z[j]; } } } signed main(){ ios::sync_with_stdio(false); cin.tie(0); cin >> m >> n >> mulx >> addx >> muly >> addy >> MOD; 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]; make(); int xans = 0; for(int i = 0;i < m;i++){ int ans = z[a[i]]; if(a[i] * b[i] < MOD){ ans -= z[a[i] * b[i]]; } cout << ans << endl; xans ^= ans; } int aa = a[m-1], bb = b[m-1]; for(int i = m;i < n;i++){ aa = (aa * mulx + addx + MOD -1) % MOD + 1; bb = (bb * muly + addy + MOD -1) % MOD + 1; int ans = z[aa]; if(aa * bb < MOD){ ans -= z[aa * bb]; } xans ^= ans; } cout << xans << endl; return 0; }