結果
問題 | No.2178 Payable Magic Items |
ユーザー | mine691 |
提出日時 | 2022-09-27 03:33:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,032 bytes |
コンパイル時間 | 2,841 ms |
コンパイル使用メモリ | 217,408 KB |
実行使用メモリ | 33,632 KB |
最終ジャッジ日時 | 2024-05-08 13:20:00 |
合計ジャッジ時間 | 8,855 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | TLE | - |
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 | -- | - |
ソースコード
#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); for (int i = 0; i < N; i++) { cin >> s[i]; } set<string> st(s.begin(), s.end()); 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; }); int ans = 0; for (int i = 0; i < N; i++) { vector<string> del; for (auto &&t : st) { 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 &&d : del) st.erase(d); } cout << ans << "\n"; }