結果

問題 No.1995 CHIKA Road
ユーザー pointNpointN
提出日時 2022-09-03 14:41:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,044 ms / 2,000 ms
コード長 1,761 bytes
コンパイル時間 1,933 ms
コンパイル使用メモリ 161,464 KB
実行使用メモリ 79,704 KB
最終ジャッジ日時 2024-11-17 04:36:21
合計ジャッジ時間 14,787 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 34 ms
7,808 KB
testcase_07 AC 141 ms
17,792 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 3 ms
6,820 KB
testcase_10 AC 101 ms
7,600 KB
testcase_11 AC 1,044 ms
79,704 KB
testcase_12 AC 661 ms
42,652 KB
testcase_13 AC 281 ms
28,664 KB
testcase_14 AC 302 ms
30,256 KB
testcase_15 AC 901 ms
70,536 KB
testcase_16 AC 62 ms
10,624 KB
testcase_17 AC 330 ms
32,360 KB
testcase_18 AC 636 ms
50,432 KB
testcase_19 AC 636 ms
50,804 KB
testcase_20 AC 291 ms
29,320 KB
testcase_21 AC 262 ms
27,248 KB
testcase_22 AC 581 ms
48,008 KB
testcase_23 AC 143 ms
18,048 KB
testcase_24 AC 582 ms
42,156 KB
testcase_25 AC 73 ms
11,600 KB
testcase_26 AC 169 ms
20,480 KB
testcase_27 AC 481 ms
41,072 KB
testcase_28 AC 258 ms
27,116 KB
testcase_29 AC 614 ms
48,988 KB
testcase_30 AC 72 ms
11,444 KB
testcase_31 AC 33 ms
7,680 KB
testcase_32 AC 100 ms
14,208 KB
testcase_33 AC 443 ms
40,428 KB
testcase_34 AC 36 ms
8,064 KB
testcase_35 AC 159 ms
19,328 KB
testcase_36 AC 192 ms
22,092 KB
testcase_37 AC 548 ms
45,156 KB
testcase_38 AC 361 ms
34,268 KB
testcase_39 AC 30 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
#include <cmath>
#include <iomanip>
#include <stack>
#include <queue>
#include <numeric>
#include <map>
#include <unordered_map>
#include <set>
#include <fstream>
#include <chrono>
#include <random>
#include <bitset>
//#include <atcoder/all>
#include <sstream>
#define rep(i,n) for(int i=0;i<(n);i++)
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define sz(x) ((int)(x).size())
#define pb push_back
using ll = long long;
using namespace std;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
ll gcd(ll a, ll b) {return b?gcd(b,a%b):a;}
ll lcm(ll a, ll b) {return a/gcd(a,b)*b;}

int main(){
  int N,M; cin >> N >> M;
  set<int> st;
  st.insert(1);
  st.insert(N);
  map<int,vector<int>> G;
  map<int,vector<ll>> CO;
  rep(i,M){
    int a,b; cin >> a >> b;
    G[a].pb(b);
    CO[a].pb(2*b-2*a-1);
    st.insert(a);
    st.insert(b);
  }
  vector<int> vst;
  for(auto s:st){
    vst.pb(s);
  }
  rep(i,sz(vst)-1){
    int a = vst[i];
    int b = vst[i+1];
    G[a].pb(b);
    CO[a].pb(2*(b-a));
  }
  map<int,ll> D;
  set<int> used;
  priority_queue<pair<ll,int>,
                 vector<pair<ll,int>>,
                 greater<pair<ll,int>>> q;
  q.push({(ll)0,1});
  while(!q.empty()){
    ll d = q.top().first; int to = q.top().second; q.pop();
    if(used.count(to)) continue;
    used.insert(to); D[to] = d;
    rep(i,sz(G[to])){
      int nxt=G[to][i];
      if(D.count(nxt) && D[nxt] <= D[to] + CO[to][i]) continue;
      q.push({D[to] + CO[to][i], nxt});
    }
  }
  cout << D[N] << endl;
  return 0;
}
0