結果

問題 No.2178 Payable Magic Items
ユーザー simansiman
提出日時 2023-04-28 14:23:44
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 2,064 ms / 4,000 ms
コード長 912 bytes
コンパイル時間 3,859 ms
コンパイル使用メモリ 144,644 KB
実行使用メモリ 40,192 KB
最終ジャッジ日時 2024-11-17 14:46:10
合計ジャッジ時間 21,105 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 896 ms
34,048 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 24 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 23 ms
5,248 KB
testcase_09 AC 14 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 983 ms
23,244 KB
testcase_12 AC 1,596 ms
40,140 KB
testcase_13 AC 1,676 ms
40,192 KB
testcase_14 AC 1,639 ms
40,064 KB
testcase_15 AC 1,933 ms
39,980 KB
testcase_16 AC 2,064 ms
40,136 KB
testcase_17 AC 1,308 ms
35,968 KB
testcase_18 AC 7 ms
5,248 KB
testcase_19 AC 208 ms
10,624 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 6 ms
5,248 KB
testcase_22 AC 6 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 1,480 ms
38,144 KB
testcase_25 AC 1,211 ms
34,688 KB
testcase_26 AC 248 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

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

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

  set<string> visited;

  for (string &s : S) {
    if (visited.count(s)) continue;

    queue<string> que;
    que.push(s);

    while (not que.empty()) {
      string str = que.front();
      que.pop();

      for (int i = 0; i < K; ++i) {
        if (str[i] == '0') continue;

        string ns = str;
        ns[i]--;

        if (visited.count(ns)) continue;
        visited.insert(ns);
        que.push(ns);
      }
    }
  }

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

  cout << ans << endl;

  return 0;
}
0