結果

問題 No.2178 Payable Magic Items
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-05 17:12:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 114 ms / 4,000 ms
コード長 996 bytes
コンパイル時間 1,117 ms
コンパイル使用メモリ 110,976 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-05-02 12:14:07
合計ジャッジ時間 3,682 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 43 ms
6,272 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 5 ms
6,400 KB
testcase_06 AC 6 ms
6,400 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 6 ms
6,400 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 91 ms
6,528 KB
testcase_12 AC 108 ms
6,272 KB
testcase_13 AC 113 ms
6,400 KB
testcase_14 AC 113 ms
6,400 KB
testcase_15 AC 113 ms
6,272 KB
testcase_16 AC 114 ms
6,400 KB
testcase_17 AC 65 ms
6,272 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 21 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 92 ms
6,400 KB
testcase_25 AC 52 ms
6,528 KB
testcase_26 AC 27 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

int main(){

    ll N, K, S, T, mx, u, ans=0;
    cin >> N >> K;
    string s;

    vector<ll> b(K+1);
    b[0] = 1;
    for (int i=1; i<=K; i++) b[i] = b[i-1] * 5;
    mx = b[K];
    vector<int> p(mx), q(mx);

    for (int i=0; i<N; i++){
        cin >> s;
        S = 0;
        for (int j=0; j<K; j++) S += b[j] * (s[j]-'0');
        p[S] = 1;
        q[S] = 1;
    }

    for (int i=mx-1; i>=0; i--){
        if (q[i] == 0) continue;
        for (int j=0; j<K; j++){
            u = (i / b[j]) % 5;
            if (u > 0){
                T = i - b[j];
                q[T] += 1;
            }
        }
    }

    for (int i=0; i<mx; i++){
        if (p[i] == 1 && q[i] > 1) ans++;
    }
    cout << ans << endl;

    return 0;
}
0