結果

問題 No.2178 Payable Magic Items
ユーザー HIcoderHIcoder
提出日時 2024-10-07 23:36:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 766 ms / 4,000 ms
コード長 1,299 bytes
コンパイル時間 1,397 ms
コンパイル使用メモリ 131,808 KB
実行使用メモリ 39,820 KB
最終ジャッジ日時 2024-10-07 23:36:54
合計ジャッジ時間 10,021 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 579 ms
33,424 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 10 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 9 ms
6,820 KB
testcase_09 AC 6 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 460 ms
24,400 KB
testcase_12 AC 766 ms
39,776 KB
testcase_13 AC 738 ms
39,820 KB
testcase_14 AC 680 ms
39,664 KB
testcase_15 AC 737 ms
39,760 KB
testcase_16 AC 716 ms
39,724 KB
testcase_17 AC 653 ms
35,488 KB
testcase_18 AC 4 ms
6,820 KB
testcase_19 AC 85 ms
10,212 KB
testcase_20 AC 2 ms
6,824 KB
testcase_21 AC 4 ms
6,824 KB
testcase_22 AC 5 ms
6,820 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 662 ms
37,944 KB
testcase_25 AC 602 ms
34,352 KB
testcase_26 AC 104 ms
10,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
#include<unordered_set>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;

ll dp[6][6][6][6][6][6][6][6];

int main(){
    int N,K;
    cin>>N>>K;

    vector<string> S(N);
    for(int i=0;i<N;i++){
        cin>>S[i];
    }

    unordered_set<string> visited;

    for(auto s:S){
        if(visited.count(s)){
            continue;
        }
        vector<string> stk;
        stk.push_back(s);
        while(!stk.empty()){

            string s=stk.back();
            stk.pop_back();

            for(int i=0;i<K;i++){
                int a=(s[i]-'0');
                if(a==0) continue;
                string nv=s;
                nv[i]=(char)(a-1+'0');
                if(visited.count(nv)==0){
                    stk.push_back(nv);
                    visited.insert(nv);
                }
            }
        }
    }


    int ans=0;
    for(string s:S){
        if(visited.count(s)){
            ans++;
        }
    }
    cout<<ans<<endl;


    
}
0