結果
問題 | No.990 N×Mマス計算(Kの倍数) |
ユーザー | merom686 |
提出日時 | 2020-02-15 15:03:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 133 ms / 2,000 ms |
コード長 | 2,549 bytes |
コンパイル時間 | 1,150 ms |
コンパイル使用メモリ | 97,680 KB |
実行使用メモリ | 12,928 KB |
最終ジャッジ日時 | 2024-11-16 02:12:05 |
合計ジャッジ時間 | 2,446 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 34 ms
6,816 KB |
testcase_11 | AC | 16 ms
6,816 KB |
testcase_12 | AC | 62 ms
6,820 KB |
testcase_13 | AC | 12 ms
6,820 KB |
testcase_14 | AC | 29 ms
6,820 KB |
testcase_15 | AC | 16 ms
6,820 KB |
testcase_16 | AC | 43 ms
6,824 KB |
testcase_17 | AC | 14 ms
6,816 KB |
testcase_18 | AC | 61 ms
6,824 KB |
testcase_19 | AC | 22 ms
6,816 KB |
testcase_20 | AC | 133 ms
12,928 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <map> #include <array> #include <cstdio> #include <cstring> #include <cmath> using namespace std; using ll = long long; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m, k; cin >> n >> m >> k; char op; cin >> op; ll r = 0; if (op == '+') { map<int, int> mp; for (int j = 0; j < m; j++) { int b; cin >> b; mp[b % k]++; } for (int i = 0; i < n; i++) { int a; cin >> a; int l = k - a % k; if (l == k) l = 0; r += mp[l]; } } else { vector<pair<int, int>> p; int t = k; for (int i = 2; i * i <= t; i++) { int c = 0; while (t % i == 0) t /= i, c++; if (c > 0) p.push_back({ i, c }); } if (t > 1) p.push_back({ t, 1 }); int l = p.size(); vector<array<int8_t, 9>> a(n), b(m); for (int j = 0; j < m; j++) { int t; cin >> t; for (int h = 0; h < l; h++) { int c = 0, d = p[h].first; while (c < p[h].second && t % d == 0) t /= d, c++; b[j][h] = c; } } for (int i = 0; i < n; i++) { int t; cin >> t; for (int h = 0; h < l; h++) { int c = 0, d = p[h].first; while (c < p[h].second && t % d == 0) t /= d, c++; a[i][h] = c; } } int s = 1; for (int h = 0; h < l; h++) { s *= p[h].second + 1; } vector<int> u(s); for (int i = 0; i < n; i++) { int t = 0, v = 1; for (int h = 0; h < l; h++) { t += a[i][h] * v; v *= p[h].second + 1; } u[t]++; } for (int h = 0, t = 1; h < l; h++) { int t2 = t * (p[h].second + 1); for (int t0 = s - 1; t0 >= 0; t0--) { int t1 = t0 + t; if (t0 / t2 != t1 / t2) continue; u[t0] += u[t1]; } t = t2; } for (int j = 0; j < m; j++) { int t = 0, v = 1; for (int h = 0; h < l; h++) { t += (p[h].second - b[j][h]) * v; v *= p[h].second + 1; } r += u[t]; } } cout << r << endl; return 0; }