結果

問題 No.1463 Hungry Kanten
ユーザー bonKotsubonKotsu
提出日時 2021-04-19 23:54:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 821 bytes
コンパイル時間 1,866 ms
コンパイル使用メモリ 181,776 KB
実行使用メモリ 196,352 KB
最終ジャッジ日時 2024-07-04 05:11:52
合計ジャッジ時間 7,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 49 ms
8,064 KB
testcase_03 AC 321 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 TLE -
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 14 ms
6,944 KB
testcase_15 AC 10 ms
6,940 KB
testcase_16 AC 53 ms
10,240 KB
testcase_17 AC 141 ms
16,896 KB
testcase_18 AC 104 ms
8,576 KB
testcase_19 AC 794 ms
78,720 KB
testcase_20 AC 1,084 ms
104,192 KB
testcase_21 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define ll long long
#define rep(i, n) for (int i = 0; i < (n); i++)
#define P pair<int, int>

int main() {
  int n, k;
  cin >> n >> k;
  vector<int> a(n);
  rep(i, n) cin >> a[i];


  auto factorize = [&](map<int, int>& mp, int x) {
    for (int i = 2; i*i <= x; i++) {
      if (x%i==0) {
        while(x%i==0) {
          mp[i]++;
          x /= i;
        }
      }
    }
    if (x > 1) mp[x]++;
  };

  set<map<int,int>> s;
  rep(bit, 1<<n) {
    int cnt = 0;
    int sum = 0;
    map<int, int> mp_sum, mp_prod;
    rep(j, n) {
      if (bit>>j&1) {
        cnt++;
        sum += a[j];
        factorize(mp_prod, a[j]);
      }
    }
    if (cnt < k) continue;
    factorize(mp_sum, sum);
    s.insert(mp_sum);
    s.insert(mp_prod);
  }
  cout << s.size() << endl;

}
0