結果

問題 No.1382 Travel in Mitaru city
ユーザー tnakao0123tnakao0123
提出日時 2021-02-08 15:52:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 1,430 bytes
コンパイル時間 921 ms
コンパイル使用メモリ 101,868 KB
実行使用メモリ 10,500 KB
最終ジャッジ日時 2024-07-05 18:17:39
合計ジャッジ時間 7,391 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,888 KB
testcase_01 AC 3 ms
6,016 KB
testcase_02 AC 3 ms
6,016 KB
testcase_03 AC 3 ms
5,888 KB
testcase_04 AC 3 ms
6,016 KB
testcase_05 AC 3 ms
5,888 KB
testcase_06 AC 29 ms
7,552 KB
testcase_07 AC 23 ms
7,168 KB
testcase_08 AC 14 ms
6,656 KB
testcase_09 AC 31 ms
7,808 KB
testcase_10 AC 30 ms
7,552 KB
testcase_11 AC 46 ms
8,192 KB
testcase_12 AC 48 ms
8,320 KB
testcase_13 AC 50 ms
8,448 KB
testcase_14 AC 42 ms
8,192 KB
testcase_15 AC 42 ms
8,192 KB
testcase_16 AC 69 ms
9,472 KB
testcase_17 AC 70 ms
9,472 KB
testcase_18 AC 68 ms
9,472 KB
testcase_19 AC 73 ms
9,600 KB
testcase_20 AC 72 ms
9,600 KB
testcase_21 AC 73 ms
9,472 KB
testcase_22 AC 72 ms
9,472 KB
testcase_23 AC 68 ms
9,472 KB
testcase_24 AC 72 ms
9,472 KB
testcase_25 AC 71 ms
9,472 KB
testcase_26 AC 71 ms
9,472 KB
testcase_27 AC 72 ms
9,472 KB
testcase_28 AC 69 ms
9,472 KB
testcase_29 AC 71 ms
9,600 KB
testcase_30 AC 70 ms
9,472 KB
testcase_31 AC 50 ms
8,960 KB
testcase_32 AC 59 ms
9,600 KB
testcase_33 AC 55 ms
9,344 KB
testcase_34 AC 39 ms
8,320 KB
testcase_35 AC 26 ms
7,552 KB
testcase_36 AC 40 ms
9,088 KB
testcase_37 AC 10 ms
6,528 KB
testcase_38 AC 44 ms
9,344 KB
testcase_39 AC 15 ms
6,912 KB
testcase_40 AC 33 ms
8,576 KB
testcase_41 AC 37 ms
8,832 KB
testcase_42 AC 44 ms
9,344 KB
testcase_43 AC 39 ms
8,960 KB
testcase_44 AC 18 ms
7,168 KB
testcase_45 AC 35 ms
8,704 KB
testcase_46 AC 18 ms
7,052 KB
testcase_47 AC 64 ms
10,352 KB
testcase_48 AC 45 ms
9,032 KB
testcase_49 AC 72 ms
10,500 KB
testcase_50 AC 31 ms
7,936 KB
testcase_51 AC 51 ms
9,088 KB
testcase_52 AC 59 ms
9,600 KB
testcase_53 AC 15 ms
6,656 KB
testcase_54 AC 27 ms
7,680 KB
testcase_55 AC 57 ms
9,600 KB
testcase_56 AC 20 ms
7,168 KB
testcase_57 AC 38 ms
8,320 KB
testcase_58 AC 9 ms
6,400 KB
testcase_59 AC 20 ms
6,912 KB
testcase_60 AC 53 ms
9,344 KB
testcase_61 AC 5 ms
6,016 KB
testcase_62 AC 3 ms
5,888 KB
testcase_63 AC 9 ms
6,400 KB
testcase_64 AC 5 ms
6,272 KB
testcase_65 AC 3 ms
6,016 KB
testcase_66 AC 4 ms
5,888 KB
testcase_67 AC 5 ms
6,016 KB
testcase_68 AC 5 ms
6,144 KB
testcase_69 AC 4 ms
6,016 KB
testcase_70 AC 6 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 1382.cc:  No.1382 Travel in Mitaru city - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_N = 100000;

/* typedef */

typedef pair<int,int> pii;
typedef vector<int> vi;

/* global variables */

int ps[MAX_N];
vi nbrs[MAX_N];
bool used[MAX_N];

/* subroutines */

/* main */

int main() {
  int n, m, st, gl;
  scanf("%d%d%d%d", &n, &m, &st, &gl);
  st--, gl--;

  for (int i = 0; i < n; i++) scanf("%d", ps + i);

  for (int i = 0; i < m; i++) {
    int a, b;
    scanf("%d%d", &a, &b);
    a--, b--;
    nbrs[a].push_back(b);
    nbrs[b].push_back(a);
  }

  int x = ps[st], y = 0;
  used[st] = true;

  priority_queue<pii> q;
  q.push(pii(ps[st], st));

  while (! q.empty()) {
    pii u = q.top(); q.pop();
    int up = u.first, ui = u.second;
    //printf("u=(%d,%d), x=%d, y=%d\n", up, ui, x, y);

    if (x > up) x = up, y++;
    
    vi &nbru = nbrs[ui];
    for (vi::iterator vit = nbru.begin(); vit != nbru.end(); vit++) {
      int v = *vit;
      if (! used[v]) {
	used[v] = true;
	q.push(pii(ps[v], v));
      }
    }
  }

  printf("%d\n", y);
  return 0;
}
0