結果
問題 | No.2178 Payable Magic Items |
ユーザー | mine691 |
提出日時 | 2022-09-27 04:18:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,254 bytes |
コンパイル時間 | 2,636 ms |
コンパイル使用メモリ | 220,624 KB |
実行使用メモリ | 10,368 KB |
最終ジャッジ日時 | 2024-05-08 13:22:31 |
合計ジャッジ時間 | 7,956 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
ソースコード
// 愚直高速化 unordered_set<string> ver. #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<unordered_set<string>> 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(s[i]); } int ans = 0; for (int i = 0; i < N; i++) { for (int j = 0; j < d[i]; j++) { vector<string> del; for (auto &&t : st[j]) { if (s[i] == t) continue; int cnt = 0; for (int k = 0; k < K; k++) cnt += (s[i][k] <= t[k]); if (cnt == K) { del.emplace_back(t); ans++; } } for (auto &&a : del) st[j].erase(a); } } cout << ans << "\n"; }