結果
問題 | No.2178 Payable Magic Items |
ユーザー | MasKoaTS |
提出日時 | 2022-08-05 18:18:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 924 bytes |
コンパイル時間 | 1,108 ms |
コンパイル使用メモリ | 89,500 KB |
実行使用メモリ | 28,404 KB |
最終ジャッジ日時 | 2024-05-08 13:16:45 |
合計ジャッジ時間 | 20,827 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #define rep(i, l, n) for (int i = (l); i < (n); i++) using namespace std; template <class T> using V = vector<T>; int main(void) { int N, K; cin >> N >> K; V<V<int> > A(N, V<int>(K)); rep(i, 0, N) { rep(j, 0, K) { cin >> A[i][j]; } } if (K == 1) { cout << (N - 1) << endl; return 0; } V<bool> local_max(N); rep(i, 0, K - 1) { rep(j, i + 1, K) { V<V<int> > vec(N, V<int>(3)); rep(k, 0, N) { vec[k] = { A[k][i],A[k][j],k }; } sort(vec.begin(), vec.end(), greater<V<int> >()); int ma = vec[0][1]; local_max[vec[0][2]] = (vec[0][0] > vec[1][0] or vec[0][1] > vec[1][1]); for (auto v : vec) { int a = v[0], b = v[1], c = v[2]; if (b <= ma) { continue; } local_max[c] = true; ma = b; } } } int ans = 0; for (auto lm : local_max) { ans += lm ^ 1; } cout << ans << endl; return 0; }