結果
問題 | No.546 オンリー・ワン |
ユーザー | takey |
提出日時 | 2024-05-30 02:40:16 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 1,889 bytes |
コンパイル時間 | 5,181 ms |
コンパイル使用メモリ | 279,544 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-30 02:40:25 |
合計ジャッジ時間 | 6,392 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 4 ms
6,940 KB |
ソースコード
#define _USE_MATH_DEFINES // M_PI等のフラグ #include <bits/stdc++.h> #define MOD 1000000007 #define COUNTOF(array) (sizeof(array)/sizeof(array[0])) #define rep(i,n) for (int i = 0; i < (n); ++i) #define intceil(a,b) ((a+(b-1))/(b)) using namespace std; using ll = long long; using pii = pair<int,int>; using pll = pair<long,long>; const long long INF = LONG_LONG_MAX - 1001001001001001; void chmax(ll& x, ll y) { x = max(x,y); } void chmin(ll& x, ll y) { x = min(x,y); } string vs = "URDL"; // 上右下左 vector<ll> vy = { -1, 0, 1, 0 }; vector<ll> vx = { 0, 1, 0, -1 }; void solve() { ll N, L, H; cin >> N >> L >> H; vector<ll> C(N); for(ll i=0; i<N; i++) cin >> C[i]; // n(c0 ∪ c1 ∪ c2 ∪ ...) を求める ll all = 0; for(ll bit=1; bit<(1<<N); bit++) { ll popcnt = __builtin_popcountll(bit); ll div = 1; for(ll d=0; d<N; d++) { if (bit>>d&1) { div = lcm(div, C[d]); } } ll cntH = H/div; ll cntL = (L-1LL)/div; if (popcnt%2 == 0) all -= (cntH-cntL); else all += (cntH-cntL); } // n(C[i]以外の和集合)を求めて、C[i]のみで割り切れるものの個数を数え上げる ll ans = 0; for(ll i=0; i<N; i++) { ll res = 0; // n(C[i]以外の和集合) for(ll bit=1; bit<(1<<N); bit++) { if (bit>>i&1) continue; ll popcnt = __builtin_popcountll(bit); ll div = 1; for(ll d=0; d<N; d++) { if (bit>>d&1) { div = lcm(div, C[d]); } } ll cntH = H/div; ll cntL = (L-1LL)/div; if (popcnt%2 == 0) res -= (cntH-cntL); else res += (cntH-cntL); } ans += all-res; } cout << ans << endl; } int main() { solve(); return 0; }