結果

問題 No.2178 Payable Magic Items
ユーザー _yurimoir_yurimoir
提出日時 2023-01-07 07:43:31
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,413 ms / 4,000 ms
コード長 1,038 bytes
コンパイル時間 3,523 ms
コンパイル使用メモリ 254,536 KB
実行使用メモリ 33,024 KB
最終ジャッジ日時 2024-05-08 13:50:26
合計ジャッジ時間 16,326 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 535 ms
22,144 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 15 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 15 ms
5,376 KB
testcase_09 AC 10 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 934 ms
22,912 KB
testcase_12 AC 1,312 ms
33,024 KB
testcase_13 AC 1,378 ms
33,024 KB
testcase_14 AC 1,413 ms
33,024 KB
testcase_15 AC 1,378 ms
33,024 KB
testcase_16 AC 1,377 ms
33,024 KB
testcase_17 AC 964 ms
25,600 KB
testcase_18 AC 6 ms
5,376 KB
testcase_19 AC 175 ms
9,984 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 6 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 1,145 ms
29,696 KB
testcase_25 AC 909 ms
23,296 KB
testcase_26 AC 211 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
int32_t main(){
    int n,k;
    cin>>n>>k;
    int tank[n];
    set<int> st;
    for(int i=0;i<n;i++){
        string s;
        cin>>s;
        tank[i]=stoi(s);
        st.insert(tank[i]);
    }
    int ans=0;
    set<int> used;
    for(int i=0;i<n;i++){
        if(used.find(tank[i])!=used.end())continue;
        queue<int> que;
        que.push(tank[i]);
        // used.insert(tank[i]);
        // map<int,int> dist;
        // dist[tank[i]]=0;
        while(!que.empty()){
            int px=que.front();
            int v=px;
            px*=10;
            que.pop();
            for(int j=0;j<k;j++){
                px/=10;
                if(px%10>0){
                    int nx=v-pow(10,j);
                    if(used.find(nx)!=used.end())continue;
                    if(st.find(nx)!=st.end())ans++;
                    used.insert(nx);
                    que.push(nx);
                }
            }
        }
    }
    cout<<ans<<endl;
    return 0;
}
0