結果

問題 No.1995 CHIKA Road
ユーザー otoshigootoshigo
提出日時 2022-07-01 21:55:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 1,276 bytes
コンパイル時間 2,664 ms
コンパイル使用メモリ 218,744 KB
実行使用メモリ 33,640 KB
最終ジャッジ日時 2024-05-04 16:19:45
合計ジャッジ時間 5,634 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 10 ms
5,376 KB
testcase_07 AC 34 ms
8,832 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 34 ms
5,376 KB
testcase_11 AC 231 ms
33,640 KB
testcase_12 AC 125 ms
20,452 KB
testcase_13 AC 57 ms
13,548 KB
testcase_14 AC 63 ms
13,928 KB
testcase_15 AC 182 ms
29,924 KB
testcase_16 AC 16 ms
6,212 KB
testcase_17 AC 73 ms
14,396 KB
testcase_18 AC 134 ms
21,460 KB
testcase_19 AC 138 ms
21,488 KB
testcase_20 AC 68 ms
13,456 KB
testcase_21 AC 59 ms
12,472 KB
testcase_22 AC 123 ms
20,460 KB
testcase_23 AC 34 ms
8,960 KB
testcase_24 AC 104 ms
18,256 KB
testcase_25 AC 19 ms
6,448 KB
testcase_26 AC 39 ms
9,836 KB
testcase_27 AC 101 ms
17,820 KB
testcase_28 AC 59 ms
12,444 KB
testcase_29 AC 124 ms
20,936 KB
testcase_30 AC 17 ms
6,532 KB
testcase_31 AC 10 ms
5,376 KB
testcase_32 AC 24 ms
7,424 KB
testcase_33 AC 101 ms
17,640 KB
testcase_34 AC 10 ms
5,376 KB
testcase_35 AC 36 ms
9,472 KB
testcase_36 AC 43 ms
10,440 KB
testcase_37 AC 117 ms
19,332 KB
testcase_38 AC 82 ms
15,188 KB
testcase_39 AC 10 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for (int i = 0; i < n; i++)
#define rrep(i,n) for (int i = n-1; i >= 0; i--)
#define rep2(i,a,b) for (int i = a; i < b; i++)
#define rrep2(i,a,b) for (int i = a-1; i >= b; i--)
#define rep3(i,a,b,c) for (int i = a; i < b; i+=c)
#define rrep3(i,a,b,c) for (int i = a-1; i >= b; i-=c)
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int n,m;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin>>n>>m;
    vector<int>V={0,n-1};
    map<int,vector<int>>G;
    rep(i,m){
        int a,b;cin>>a>>b;--a;--b;
        G[a].push_back(b);
        V.push_back(a);
        V.push_back(b);
    }
    sort(all(V));
    V.erase(unique(all(V)),V.end());
    int l=V.size();
    map<int,int>mp;
    rep(i,l){
        mp[V[i]]=i;
    }
    vector<ll>dp(l,1LL<<60);
    dp[0]=0;
    rep(i,l-1){
        chmin(dp[i+1],dp[i]+2*(V[i+1]-V[i]));
        for(auto b:G[V[i]]){
            int j=mp[b];
            chmin(dp[j],dp[i]+(2*b-2*V[i]-1));
        }
    }
    cout<<dp[l-1]<<"\n";
}
0