結果

問題 No.2178 Payable Magic Items
ユーザー MasKoaTSMasKoaTS
提出日時 2022-09-04 19:08:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 962 bytes
コンパイル時間 836 ms
コンパイル使用メモリ 86,412 KB
実行使用メモリ 14,016 KB
最終ジャッジ日時 2024-05-08 13:16:14
合計ジャッジ時間 6,458 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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 main(void) {
	int N, K;	cin >> N >> K;
	set<string> st = {};
	rep(i, 0, N) {
		string s;	cin >> s;
		st.insert(s);
	}

	set<string> visited = {};
	itrep(itr, st) {
		string sv = *itr;
		if (visited.find(sv) != visited.end()) {
			continue;
		}
		V<string> stk = { sv };
		while (stk.empty() == false) {
			string v = stk[stk.size() - 1];
			stk.pop_back();
			rep(i, 0, K) {
				if (v[i] == 'D') {
					continue;
				}
				string nv = v;	nv[i]++;
				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