結果

問題 No.2178 Payable Magic Items
ユーザー MasKoaTSMasKoaTS
提出日時 2024-12-02 20:22:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 871 ms / 4,000 ms
コード長 1,130 bytes
コンパイル時間 2,397 ms
コンパイル使用メモリ 212,000 KB
実行使用メモリ 48,700 KB
最終ジャッジ日時 2024-12-02 20:22:51
合計ジャッジ時間 10,974 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 529 ms
33,476 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 10 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 10 ms
5,248 KB
testcase_09 AC 7 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 488 ms
33,340 KB
testcase_12 AC 804 ms
48,576 KB
testcase_13 AC 798 ms
48,700 KB
testcase_14 AC 871 ms
48,696 KB
testcase_15 AC 863 ms
48,700 KB
testcase_16 AC 825 ms
48,576 KB
testcase_17 AC 639 ms
38,168 KB
testcase_18 AC 5 ms
5,248 KB
testcase_19 AC 90 ms
12,328 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 4 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 718 ms
43,416 KB
testcase_25 AC 571 ms
35,436 KB
testcase_26 AC 105 ms
13,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


int main(){
    int N, K;   cin >> N >> K;
    unordered_set<string> st = {};
    for(int i = 0; i < N; ++i){
        string s;   cin >> s;
        st.insert(s);
    }

    unordered_set<string> visited = {};
    itrep(itr, st){
        string sv = *itr;
        if(visited.find(sv) != visited.end()){
            continue;
        }
        vector<string> stk = { sv };
        while(!stk.empty()){
            string v = stk[stk.size() - 1]; stk.pop_back();
            for(int i = 0; i < K; ++i){
                if(v[i] == '0'){
                    continue;
                }
                string nv = v;  --nv[i];
                if(visited.find(nv) != visited.end()){
                    continue;
                }
                visited.insert(nv);
                stk.push_back(nv);
            }
        }
    }

    int ans = 0;
    itrep(itr, st){
        if(visited.find(*itr) == visited.end()){
            continue;
        }
        ++ans;
    }
    cout << ans << endl;

    return 0;
}
0