結果

問題 No.1767 BLUE to RED
ユーザー se1ka2se1ka2
提出日時 2021-11-26 22:41:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 899 bytes
コンパイル時間 637 ms
コンパイル使用メモリ 72,268 KB
実行使用メモリ 12,900 KB
最終ジャッジ日時 2024-06-29 18:17:03
合計ジャッジ時間 4,324 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,764 KB
testcase_01 AC 4 ms
9,696 KB
testcase_02 AC 4 ms
9,760 KB
testcase_03 AC 3 ms
9,744 KB
testcase_04 AC 4 ms
9,704 KB
testcase_05 AC 4 ms
9,556 KB
testcase_06 AC 3 ms
9,728 KB
testcase_07 AC 4 ms
9,728 KB
testcase_08 AC 4 ms
9,676 KB
testcase_09 AC 99 ms
12,268 KB
testcase_10 AC 125 ms
11,688 KB
testcase_11 AC 102 ms
11,936 KB
testcase_12 AC 99 ms
11,600 KB
testcase_13 AC 145 ms
11,784 KB
testcase_14 AC 186 ms
12,884 KB
testcase_15 AC 187 ms
12,792 KB
testcase_16 AC 196 ms
12,732 KB
testcase_17 AC 185 ms
12,780 KB
testcase_18 AC 186 ms
12,816 KB
testcase_19 AC 190 ms
12,892 KB
testcase_20 AC 185 ms
12,896 KB
testcase_21 AC 186 ms
12,900 KB
testcase_22 AC 194 ms
12,872 KB
testcase_23 AC 194 ms
12,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
using namespace std;
typedef long long ll;
typedef pair<ll, int> P;

const ll INF = 100000000000;

ll dp[200002][2];

int main()
{
    int n, m;
    cin >> n >> m;
    P p[400002];
    for(int i = 0; i < n; i++){
        ll a;
        cin >> a;
        p[i] = P(a, 0);
    }
    for(int i = 0; i < m; i++){
        ll b;
        cin >> b;
        p[i + n] = P(b, 1);
    }
    p[n + m] = P(-INF, 0);
    sort(p, p + n + m + 1);
    int c = 0;
    for(int i = 1; i <= n + m; i++){
        if(p[i].second){
            c++;
            dp[c][0] = dp[c - 1][0] + p[i].first - p[i - 1].first;
            dp[c][1] = min(dp[c - 1][1] + p[i].first - p[i - 1].first, dp[c - 1][0]);
        }
        else{
            dp[c][0] = min(dp[c][0], dp[c][1] + p[i].first - p[i - 1].first);
            dp[c][1] = dp[c][0];
        }
    }
    cout << dp[c][0] << endl;
}
0