結果

問題 No.2178 Payable Magic Items
ユーザー MasKoaTSMasKoaTS
提出日時 2022-09-27 20:05:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 4,000 ms
コード長 987 bytes
コンパイル時間 913 ms
コンパイル使用メモリ 79,104 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-05-08 13:24:09
合計ジャッジ時間 2,792 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 13 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 71 ms
6,016 KB
testcase_12 AC 72 ms
6,016 KB
testcase_13 AC 72 ms
6,016 KB
testcase_14 AC 72 ms
6,016 KB
testcase_15 AC 71 ms
6,016 KB
testcase_16 AC 72 ms
6,016 KB
testcase_17 AC 35 ms
5,504 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 17 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 55 ms
5,760 KB
testcase_25 AC 25 ms
5,376 KB
testcase_26 AC 21 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#define rep(i, l, n) for (int i = (l); i < (n); i++)
using namespace std;
template <class T>	using V = vector<T>;

int toNum(string s) {
	int ret = 0;
	rep(i, 0, s.size()) {
		char c = s[i];
		ret |= (c - '0') << ((i << 1) + i);
	}
	return ret;
}


int main(void) {
	int N, K;	cin >> N >> K;
	V<int> mag(N);
	rep(i, 0, N) {
		string s;	cin >> s;
		mag[i] = toNum(s);
	}

	V<bool> visited(1 << ((K << 1) + K));
	for (int sv : mag) {
		if (visited[sv] == true) {
			continue;
		}
		V<int> stk = { sv };
		while (stk.empty() == false) {
			int v = stk[stk.size() - 1];
			stk.pop_back();
			rep(i, 0, K) {
				int k = (i << 1) + i;
				if (((v >> k) & 7) == 0) {
					continue;
				}
				int nv = v - (1 << k);
				if (visited[nv] == true) {
					continue;
				}
				visited[nv] = true;
				stk.push_back(nv);
			}
		}
	}

	int ans = 0;
	for (int v : mag) {
		if (visited[v] == false) {
			continue;
		}
		ans++;
	}
	cout << ans << endl;

	return 0;
}
0