結果

問題 No.2178 Payable Magic Items
ユーザー mine691mine691
提出日時 2022-09-27 04:17:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,205 bytes
コンパイル時間 2,566 ms
コンパイル使用メモリ 220,292 KB
実行使用メモリ 10,332 KB
最終ジャッジ日時 2024-05-08 13:22:40
合計ジャッジ時間 8,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using Int = long long;
constexpr static int mod = 1e9 + 7;
constexpr static int inf = (1 << 30) - 1;
constexpr static Int infll = (1LL << 61) - 1;
int Competitive_Programming = (ios_base::sync_with_stdio(false), cin.tie(nullptr), cout << fixed << setprecision(15), 0);

int main()
{
	int N, K;
	cin >> N >> K;
	vector<string> s(N);
	vector<int> d(N);

	for (int i = 0; i < N; i++)
	{
		cin >> s[i];
	}

	vector<set<int>> st(32);

	sort(s.begin(), s.end(), [](string &a, string &b)
		 { 
		int ret1 = 0, ret2 = 0;
		for (int j = 0; j < a.size(); j++)
		{
			ret1 += abs(a[j] - 'D');
			ret2 += abs(b[j] - 'D');
		}
			return ret1 > ret2; });

	for (int i = 0; i < N; i++)
	{
		for (int j = 0; j < K; j++)
			d[i] += abs(s[i][j] - 'D');
		st[d[i]].insert(i);
	}

	int ans = 0;

	for (int i = 0; i < N; i++)
	{
		for (int j = 0; j < d[i]; j++)
		{
			vector<int> del;
			for (auto &&l : st[j])
			{
				if (i == l)
					continue;
				int cnt = 0;
				for (int k = 0; k < K; k++)
					cnt += (s[i][k] <= s[l][k]);

				if (cnt == K)
				{
					del.emplace_back(l);
					ans++;
				}
			}
			for (auto &&l : del)
				st[j].erase(l);
		}
	}

	cout << ans << "\n";
}
0