結果

問題 No.1463 Hungry Kanten
ユーザー ぷらぷら
提出日時 2021-04-02 21:53:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,165 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 185,244 KB
実行使用メモリ 196,352 KB
最終ジャッジ日時 2024-06-06 09:20:13
合計ジャッジ時間 7,842 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 49 ms
8,064 KB
testcase_03 AC 343 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 TLE -
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 15 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 57 ms
10,112 KB
testcase_17 AC 166 ms
17,024 KB
testcase_18 AC 42 ms
8,704 KB
testcase_19 AC 926 ms
78,592 KB
testcase_20 AC 1,114 ms
104,064 KB
testcase_21 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int N,K;
    cin >> N >> K;
    vector<int>A(N);
    for(int i = 0; i < N; i++) {
        cin >> A[i];
    }
    map<map<int,int>,bool>flag;
    for(int i = 0; i < (1 << N); i++) {
        if(__builtin_popcount(i) < K) {
            continue;
        }
        int X = 0;
        for(int j = 0; j < N; j++) {
            if(1 & (i >> j)) {
                X += A[j];
            }
        }
        map<int,int>x;
        for(int j = 2; j*j <= X; j++) {
            while (X%j == 0) {
                x[j]++;
                X /= j;
            }
        }
        if(X > 1) {
            x[X]++;
        }
        flag[x] = true;
        x.clear();
        for(int j = 0; j < N; j++) {
            if(1 & (i >> j)) {
                int B = A[j];
                for(int k = 2; k*k <= B; k++) {
                    while (B%k == 0) {
                        x[k]++;
                        B /= k;
                    }
                }
                if(B > 1) {
                    x[B]++;
                }
            }
        }
        flag[x] = true;
    }
    cout << flag.size() << endl;
}
0