結果
問題 | No.1467 Selling Cars |
ユーザー | magurofly |
提出日時 | 2021-04-02 22:52:13 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 880 bytes |
コンパイル時間 | 4,223 ms |
コンパイル使用メモリ | 134,272 KB |
実行使用メモリ | 409,244 KB |
最終ジャッジ日時 | 2024-06-06 07:43:21 |
合計ジャッジ時間 | 14,467 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
ソースコード
#define rep(i, l, r) for (auto i = (l); i < (r); i++) #define chmin(dest, src) if ((dest) > (src)) dest = (src) #define chmax(dest, src) if ((dest) < (src)) dest = (src) #include <iostream> #include <vector> #include <algorithm> using namespace std; #include <atcoder/mincostflow> using namespace atcoder; using ll = int; int main() { int M, N; cin >> M >> N; vector<ll> A(N); rep(i, 0, N) cin >> A[i]; vector<ll> B(M); rep(i, 0, M) cin >> B[i]; rep(k, 1, M + 1) { mcf_graph<int, ll> graph(N + M + 2); int s = N + M; int t = N + M + 1; rep(i, 0, N) { graph.add_edge(s, i, 1, 0); } rep(i, 0, N) rep(j, 0, M) { graph.add_edge(i, N + j, 1, abs(A[i] - B[j])); } rep(i, 0, M) { graph.add_edge(N + i, t, k, 0); } auto result = graph.flow(s, t); auto cost = result.second; cout << cost << endl; } return 0; }