結果

問題 No.1467 Selling Cars
ユーザー KudeKude
提出日時 2021-04-02 22:53:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,313 bytes
コンパイル時間 5,256 ms
コンパイル使用メモリ 286,240 KB
実行使用メモリ 10,716 KB
最終ジャッジ日時 2024-06-06 07:44:55
合計ジャッジ時間 16,064 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
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 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i,n)for (int i = 0; i < int(n); ++i)
#define rrep(i,n)for (int i = int(n)-1; i >= 0; --i)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
template<class T> void chmax(T& a, const T& b) {a = max(a, b);}
template<class T> void chmin(T& a, const T& b) {a = min(a, b);}
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    ll a[2010], b[2010];
    int n, m;
    cin >> m >> n;
    rep(i, m) cin >> a[i], a[i]--;
    rep(i, n) cin >> b[i], b[i]--;
    map<int, int> dtoi;
    rep(i, m) dtoi[a[i]] = 0;
    rep(i, n) dtoi[b[i]] = 0;
    int sz = 0;
    VI itod;
    for(auto& [k, v]: dtoi) v = sz++, itod.push_back(k);
    for(int c = 1; c <= m; c++) {
        mcf_graph<int, ll> g(sz + 2);
        rep(i, sz - 1) {
            ll d = itod[i + 1] - itod[i];
            g.add_edge(i, i + 1, m, d), g.add_edge(i + 1, i, m, d);
        }
        rep(i, m) g.add_edge(sz, dtoi[a[i]], 1, 0);
        rep(i, n) g.add_edge(dtoi[b[i]], sz + 1, c, 0);
        auto [cap, cost] = g.flow(sz, sz + 1);
        cout << cost << '\n';
    }
}
0