結果

問題 No.2178 Payable Magic Items
ユーザー MasKoaTSMasKoaTS
提出日時 2024-12-02 20:33:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 4,000 ms
コード長 1,231 bytes
コンパイル時間 2,595 ms
コンパイル使用メモリ 206,992 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-12-02 20:33:05
合計ジャッジ時間 4,394 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 14 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 4 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 72 ms
6,016 KB
testcase_12 AC 72 ms
6,016 KB
testcase_13 AC 73 ms
6,016 KB
testcase_14 AC 72 ms
5,888 KB
testcase_15 AC 72 ms
5,888 KB
testcase_16 AC 73 ms
6,016 KB
testcase_17 AC 35 ms
5,504 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 17 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 56 ms
5,760 KB
testcase_25 AC 25 ms
5,376 KB
testcase_26 AC 21 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define itrep(itr, st) for(auto itr = st.begin(); itr != st.end(); ++itr)
using namespace std;


int to_num(string s) {
    int ret = 0;
    for(int i = 0; i < (int)s.size(); ++i){
        char c = s[i];
        ret |= (c - '0') << (i * 3);
    }
    return ret;
}


int main(){
    int N, K;   cin >> N >> K;
    vector<int> mag(N);
    for(auto& x : mag){
        string s;   cin >> s;
        x = to_num(s);
    }

    vector<bool> visited(1 << (K * 3));
    for(auto& sv : mag){
        if(visited[sv]){
            continue;
        }
        vector<int> stk = { sv };
        while(!stk.empty()){
            int v = stk[stk.size() - 1];    stk.pop_back();
            for(int i = 0; i < K; ++i){
                int k = i * 3;
                if(((v >> k) & 7) == 0){
                    continue;
                }
                int nv = v - (1 << k);
                if(visited[nv]){
                    continue;
                }
                visited[nv] = true;
                stk.push_back(nv);
            }
        }
    }

    int ans = 0;
    for(auto& x : mag){
        if(!visited[x]){
            continue;
        }
        ++ans;
    }
    cout << ans << endl;

    return 0;
}
0