結果

問題 No.2178 Payable Magic Items
ユーザー HIcoderHIcoder
提出日時 2024-10-07 23:38:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,010 ms / 4,000 ms
コード長 1,384 bytes
コンパイル時間 1,655 ms
コンパイル使用メモリ 133,064 KB
実行使用メモリ 39,836 KB
最終ジャッジ日時 2024-10-07 23:38:55
合計ジャッジ時間 11,375 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 633 ms
33,600 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 6 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 559 ms
24,360 KB
testcase_12 AC 858 ms
39,836 KB
testcase_13 AC 774 ms
39,812 KB
testcase_14 AC 820 ms
39,724 KB
testcase_15 AC 824 ms
39,800 KB
testcase_16 AC 779 ms
39,804 KB
testcase_17 AC 1,010 ms
35,572 KB
testcase_18 AC 5 ms
5,248 KB
testcase_19 AC 115 ms
10,216 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 5 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 767 ms
37,864 KB
testcase_25 AC 685 ms
34,308 KB
testcase_26 AC 120 ms
10,944 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 tg:S){
        if(visited.count(tg)){
            continue;
        }
        vector<string> stk;
        stk.push_back(tg);
        while(!stk.empty()){

            string s=stk.back();
            stk.pop_back();//tgは考えるべき候補から外されるので visitedにならない

            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');//s->nv
                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