結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 984 ms
34,048 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 25 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 24 ms
5,376 KB
testcase_09 AC 14 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1,199 ms
23,296 KB
testcase_12 AC 1,887 ms
40,064 KB
testcase_13 AC 1,852 ms
40,092 KB
testcase_14 AC 1,943 ms
40,192 KB
testcase_15 AC 1,821 ms
40,064 KB
testcase_16 AC 1,994 ms
40,064 KB
testcase_17 AC 1,441 ms
35,840 KB
testcase_18 AC 7 ms
5,376 KB
testcase_19 AC 256 ms
10,752 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 6 ms
5,376 KB
testcase_22 AC 7 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1,762 ms
38,148 KB
testcase_25 AC 1,377 ms
34,560 KB
testcase_26 AC 288 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