結果

問題 No.2178 Payable Magic Items
ユーザー MasKoaTSMasKoaTS
提出日時 2022-09-04 17:30:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,114 bytes
コンパイル時間 1,051 ms
コンパイル使用メモリ 85,756 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-05-08 13:15:54
合計ジャッジ時間 3,495 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 48 ms
6,528 KB
testcase_06 AC 7 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 5 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
#define rep(i, l, n) for (int i = (l); i < (n); i++)
#define itrep(itr, st) for(auto itr = st.begin(); itr != st.end(); itr++)
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 |= (3 - (c - 'A')) << (i << 1);
	}
	return ret;
}


int main(void) {
	int N, K;	cin >> N >> K;
	set<int> st = {};
	rep(i, 0, N) {
		string s;	cin >> s;
		st.insert(toNum(s));
	}

	set<int> visited = {};
	itrep(itr, st) {
		int sv = *itr;
		if (visited.find(sv) != visited.end()) {
			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;
				if (((v >> k) & 3) == 0) {
					continue;
				}
				int nv = v - (1 << k);
				if (visited.find(nv) != visited.end()) {
					continue;
				}
				visited.insert(nv);
				stk.push_back(nv);
			}
		}
	}

	int ans = 0;
	itrep(itr, st) {
		if (visited.find(*itr) == visited.end()) {
			continue;
		}
		ans++;
	}
	cout << ans << endl;

	return 0;
}
0