結果
問題 | No.546 オンリー・ワン |
ユーザー | hiroakie |
提出日時 | 2017-12-23 19:06:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,071 bytes |
コンパイル時間 | 734 ms |
コンパイル使用メモリ | 57,848 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-05-09 22:14:56 |
合計ジャッジ時間 | 4,587 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
#include <iostream> #include <algorithm> #include <cstring> using namespace std; const int N = 10; typedef long long int ll; ll dp[1 << N] = {}, n, l, h, val[N] = {}; int nmb(long bits) { bits = (bits & 0x55555555) + (bits >> 1 & 0x55555555); bits = (bits & 0x33333333) + (bits >> 2 & 0x33333333); bits = (bits & 0x0f0f0f0f) + (bits >> 4 & 0x0f0f0f0f); bits = (bits & 0x00ff00ff) + (bits >> 8 & 0x00ff00ff); return (bits & 0x0000ffff) + (bits >> 16 & 0x0000ffff); } ll gcd(ll a, ll b) { if (a == 0)return b; if (b == 0)return a; ll a2 = max(a, b), b2 = min(a, b); return gcd(b2, a2%b2); } ll lcm(ll a, ll b) { return a / gcd(a, b)*b; } ll ans = 0; int main() { cin >> n >> l >> h; for (int i = 0; i < n; i++) cin >> val[i]; for (int s = 0; s < (1 << n); s++) { ll cd = 1; for (int i = 0; i < n; i++) { if ((s >> i) & 1)cd = lcm(cd, val[i]); } dp[s] = h / cd - (l - 1) / cd; } for (int s = 0; s < (1 << n); s++) { int cnmb = nmb(s); if (cnmb % 2 == 0)ans -= cnmb * dp[s]; else ans += cnmb * dp[s]; } cout << ans << endl; return 0; }