結果

問題 No.1244 Black Segment
ユーザー どららどらら
提出日時 2020-10-03 12:58:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 1,188 bytes
コンパイル時間 1,461 ms
コンパイル使用メモリ 172,908 KB
実行使用メモリ 10,836 KB
最終ジャッジ日時 2024-07-18 04:19:12
合計ジャッジ時間 4,681 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 5 ms
6,940 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 58 ms
10,244 KB
testcase_15 AC 6 ms
6,944 KB
testcase_16 AC 54 ms
9,260 KB
testcase_17 AC 5 ms
6,940 KB
testcase_18 AC 46 ms
8,500 KB
testcase_19 AC 70 ms
9,984 KB
testcase_20 AC 71 ms
9,356 KB
testcase_21 AC 67 ms
9,216 KB
testcase_22 AC 74 ms
9,416 KB
testcase_23 AC 82 ms
9,880 KB
testcase_24 AC 73 ms
9,360 KB
testcase_25 AC 68 ms
9,136 KB
testcase_26 AC 70 ms
9,432 KB
testcase_27 AC 76 ms
9,284 KB
testcase_28 AC 84 ms
9,496 KB
testcase_29 AC 74 ms
9,844 KB
testcase_30 AC 72 ms
9,268 KB
testcase_31 AC 71 ms
9,380 KB
testcase_32 AC 75 ms
9,336 KB
testcase_33 AC 74 ms
9,332 KB
testcase_34 AC 57 ms
8,980 KB
testcase_35 AC 58 ms
8,452 KB
testcase_36 AC 64 ms
9,012 KB
testcase_37 AC 80 ms
10,836 KB
testcase_38 AC 77 ms
10,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;

struct Edge {
  int src, dest;
  int dist;
};
bool operator>(const Edge& a, const Edge& b){
  return a.dist > b.dist;
}

vector<Edge> G[100005];
int dp[100005];

int solve(int s, int t){
  rep(i,100005) dp[i] = -1;

  priority_queue<Edge,vector<Edge>,greater<Edge>> q;
  q.push((Edge){-1,s,0});

  while(!q.empty()){
    Edge e=q.top();
    q.pop();
    if(dp[e.dest] != -1) continue;
    dp[e.dest] = e.dist;
    FOR(it,G[e.dest])
      if(dp[it->dest]==-1) q.push((Edge){it->src,it->dest,e.dist+it->dist});
  }

  return dp[t];
}


int main(){
  int N, M, A, B;
  cin >> N >> M >> A >> B;
  int s = 0;
  int t = 100004;

  rep(i,M){
    int l, r;
    cin >> l >> r;
    r++;
    if(l<=A) l = s;
    if(r<=A) r = s;
    if(l>=B+1) l = t;
    if(r>=B+1) r = t;
    G[l].push_back((Edge){l,r,1});
    G[r].push_back((Edge){r,l,1});
  }
  
  cout << solve(s, t) << endl;
  
  return 0;
}

0