結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 517 ms
33,476 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 10 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 9 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 513 ms
33,468 KB
testcase_12 AC 788 ms
48,956 KB
testcase_13 AC 806 ms
48,700 KB
testcase_14 AC 801 ms
48,828 KB
testcase_15 AC 809 ms
48,660 KB
testcase_16 AC 816 ms
48,696 KB
testcase_17 AC 607 ms
38,172 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 89 ms
12,332 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 5 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 723 ms
43,552 KB
testcase_25 AC 561 ms
35,420 KB
testcase_26 AC 98 ms
13,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <unordered_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;
	unordered_set<string> st = {};
	rep(i, 0, N) {
		string s;	cin >> s;
		st.insert(s);
	}

	unordered_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] == '0') {
					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