結果
問題 | No.546 オンリー・ワン |
ユーザー | 0w1 |
提出日時 | 2017-12-28 16:51:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,136 bytes |
コンパイル時間 | 2,302 ms |
コンパイル使用メモリ | 206,448 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-01 05:44:28 |
合計ジャッジ時間 | 2,637 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
#include <bits/stdc++.h> template<typename T> void mobius_transform(std::vector<T> &mob) { for (int i = 0; i < __builtin_ctz(mob.size()); ++i) { std::for_each(mob.begin(), mob.end(), [&, s = 0](const T &x) mutable { if (~s++ >> i & 1) mob[s - 1 | 1 << i] -= x; }); } } int solve(int n, const std::vector<int> &c) { std::vector<long long> mob(1 << c.size()); for (int s = 1; s < mob.size(); ++s) { int lcm = std::accumulate(c.begin(), c.end(), 1, [&, i = 0](int x, int y) mutable { if (~s >> i++ & 1) return x; return static_cast<int>(std::min<long long>(1LL << 30, 1LL * x / std::__gcd(x, y) * y)); }); mob[s] = n / lcm; } mobius_transform(mob); return std::accumulate(c.begin(), c.end(), 0, [&, i = 0](long long x, int y) mutable { return x + mob[(1 << c.size()) - 1 ^ 1 << i++] + mob[(1 << c.size()) - 1]; }); } signed main() { std::ios::sync_with_stdio(false); int N, L, H; std::cin >> N >> L >> H; std::vector<int> C(N); std::for_each(C.begin(), C.end(), [&](int &v) { std::cin >> v; }); std::cout << solve(H, C) - solve(L - 1, C) << std::endl; return 0; }