結果
問題 | No.917 Make One With GCD |
ユーザー | tkmst201 |
提出日時 | 2019-10-25 23:46:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,130 bytes |
コンパイル時間 | 1,794 ms |
コンパイル使用メモリ | 184,280 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-13 09:49:49 |
合計ジャッジ時間 | 2,846 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i,a,b) for(int i=(a);i<(b);i++) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() #define fi first #define se second template<typename A, typename B> inline bool chmax(A &a, B b) { if (a<b) { a=b; return 1; } return 0; } template<typename A, typename B> inline bool chmin(A &a, B b) { if (a>b) { a=b; return 1; } return 0; } using ll = long long; using pii = pair<int, int>; constexpr ll INF = 1ll<<30; constexpr ll longINF = 1ll<<60; constexpr ll MOD = 1000000007; constexpr bool debug = 0; //---------------------------------// using pll = pair<ll, ll>; // nを素因数分解する (素因数, 個数)が戻り値 vector<pll> primeFactorization(ll n) { vector<pll> res; for (ll i = 2; i * i <= n; i++) { if (n % i == 0) res.push_back(pll(i, 0)); while (n % i == 0) { n /= i; res.back().second++; } } if (n > 1) res.emplace_back(n, 1); return res; } // [l, r) ll solve(int l, int r, int k, vector<bitset<1000000> > &bs) { if (k < 0) return 0; ll res = 0; while (k >= 0) { ll firc = 0, secc = 0, pos = -1; FOR(i, l, r) { if (bs[i][k] == 0) firc++; else { secc++; if (pos == -1) pos = i; } } res += ((1ll<<firc)-1) * ((1ll<<secc)-1); if (firc > 0 && secc > 0) { res += solve(l, pos, k - 1, bs); res += solve(pos, r, k - 1, bs); // printf("%d %lld %d %d\n", l, pos, r, k); break; } k--; } return res; } int main() { int N; int A[50]; cin >> N; REP(i, N) cin >> A[i]; vector<vector<pll> > pf(N); REP(i, N) pf[i] = primeFactorization(A[i]); set<ll> ss; REP(i, N) REP(j, pf[i].size()) ss.insert(pf[i][j].fi); map<ll, int> mm; for (ll u : ss) mm[u] = mm.size() - 1; // vector<bitset<1000000> > bs(N); // REP(i, N) REP(j, pf[i].size()) bs[i][mm[pf[i][j].fi]] = true; // sort(ALL(bs), [&](auto x, auto y) { // return x.to_string() < y.to_string(); // }); // // REP(i, N) cout << bs[i] << endl; // int onc = 0; // REP(i, N) if (A[i] == 1) onc++; // ll ans = solve(0, N, mm.size(), bs); // ans += (1ll<<onc)-1; // cout << ans << endl; return 0; }