/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 584.0 KiB
#2 Wrong Answer 2ms 476.0 KiB
#3 Wrong Answer 151ms 700.0 KiB

Code

#ifndef LOCAL
#include <bits/stdc++.h>
#define debug(...)
#endif

using namespace std;
#define int long long
#define cinv(v) for (auto &it:v) cin>>it;
#define coutv(v) for (auto &it:v) cout<< it<<' '; cout<<'\n';
using ll = long long;

ll INF = 1e15;

void shelby() {
    int n, k;
    cin >> n >> k;
    if (n == 1) return void(cout << "0\n");
    vector<vector<int> > v(n, vector<int>(k));
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < k; ++j) cin >> v[i][j];
    }
    vector<int> perm(k);
    iota(perm.begin(), perm.end(), 0);
    ll ans = 0;
    do {
        sort(v.begin(), v.end(), [&](auto a, auto b)-> bool {
            for (auto &it: perm) {
                if (a[it] == b[it]) continue;
                return a[it] < b[it];
            }
            return true;
        });
        debug(v);
        ll now = 0, mn = INF;
        auto calc = [&](int i, int j)-> int {
            if (j < 0 || j == n) return 0;
            int ret = 0;
            for (int l = 0; l < k; ++l) ret += abs(v[i][l] - v[j][l]);
            return ret;
        };
        for (int i = 0; i < n; ++i) {
            int res = max(calc(i, i - 1), calc(i, i + 1));
            mn = min(mn, res);
            now += res;
        }
        ans = max(ans, now);
    } while (next_permutation(perm.begin(), perm.end()));
    cout << ans << '\n';
}

signed main() {
    cin.tie(0)->sync_with_stdio(0);
    int t = 1;
    // cin >> t;
    for (int _ = 1; _ <= t; ++_) {
        // cout << "Case " << _ << ": ";
        shelby();
    }
}

Information

Submit By
Type
Submission
Problem
P1098 KuZ the Maximum spanning tree (Hard Version)
Language
C++17 (G++ 13.2.0)
Submit At
2025-01-26 15:31:42
Judged At
2025-01-26 15:31:42
Judged By
Score
1
Total Time
151ms
Peak Memory
700.0 KiB