結果

問題 No.1382 Travel in Mitaru city
ユーザー simansiman
提出日時 2023-01-03 10:38:38
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,307 bytes
コンパイル時間 1,178 ms
コンパイル使用メモリ 142,716 KB
実行使用メモリ 405,048 KB
最終ジャッジ日時 2024-11-27 01:47:41
合計ジャッジ時間 69,480 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
12,196 KB
testcase_02 AC 2 ms
12,068 KB
testcase_03 AC 1 ms
12,196 KB
testcase_04 AC 1 ms
22,636 KB
testcase_05 AC 1 ms
12,068 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 124 ms
9,984 KB
testcase_27 AC 136 ms
9,984 KB
testcase_28 AC 124 ms
9,984 KB
testcase_29 AC 121 ms
9,856 KB
testcase_30 AC 121 ms
9,984 KB
testcase_31 AC 95 ms
8,704 KB
testcase_32 AC 111 ms
9,600 KB
testcase_33 AC 104 ms
9,088 KB
testcase_34 AC 68 ms
7,296 KB
testcase_35 AC 47 ms
6,816 KB
testcase_36 AC 180 ms
8,576 KB
testcase_37 AC 23 ms
6,816 KB
testcase_38 AC 194 ms
9,224 KB
testcase_39 AC 60 ms
6,820 KB
testcase_40 AC 77 ms
7,808 KB
testcase_41 AC 197 ms
8,320 KB
testcase_42 AC 238 ms
9,344 KB
testcase_43 AC 185 ms
8,576 KB
testcase_44 AC 83 ms
6,816 KB
testcase_45 AC 162 ms
8,064 KB
testcase_46 AC 152 ms
6,816 KB
testcase_47 AC 494 ms
12,796 KB
testcase_48 AC 537 ms
13,716 KB
testcase_49 AC 588 ms
13,108 KB
testcase_50 AC 552 ms
12,980 KB
testcase_51 AC 98 ms
8,704 KB
testcase_52 AC 106 ms
9,600 KB
testcase_53 AC 26 ms
6,820 KB
testcase_54 AC 51 ms
6,820 KB
testcase_55 AC 113 ms
9,472 KB
testcase_56 AC 32 ms
6,820 KB
testcase_57 AC 71 ms
7,424 KB
testcase_58 AC 12 ms
6,816 KB
testcase_59 AC 33 ms
6,816 KB
testcase_60 AC 100 ms
9,216 KB
testcase_61 AC 32 ms
6,820 KB
testcase_62 AC 2 ms
6,816 KB
testcase_63 AC 274 ms
10,864 KB
testcase_64 AC 53 ms
6,816 KB
testcase_65 AC 3 ms
6,820 KB
testcase_66 AC 31 ms
6,816 KB
testcase_67 AC 16 ms
6,816 KB
testcase_68 AC 99 ms
6,820 KB
testcase_69 AC 15 ms
6,820 KB
testcase_70 AC 28 ms
48,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

struct Node {
  int v;
  int X;
  int Y;

  Node(int v = -1, int X = -1, int Y = -1) {
    this->v = v;
    this->X = X;
    this->Y = Y;
  }

  bool operator>(const Node &n) const {
    return X < n.X;
  }
};

int main() {
  int N, M, S, T;
  cin >> N >> M >> S >> T;

  int P[N];
  for (int i = 0; i < N; ++i) {
    cin >> P[i];
  }

  vector<int> E[N + 1];
  for (int i = 0; i < M; ++i) {
    int a, b;
    cin >> a >> b;
    E[a].push_back(b);
    E[b].push_back(a);
  }

  priority_queue <Node, vector<Node>, greater<Node>> pque;
  pque.push(Node(S, P[S - 1], 0));
  int visited[N + 1];
  memset(visited, -1, sizeof(visited));
  int ans = 0;

  while (not pque.empty()) {
    Node node = pque.top();
    pque.pop();

    if (visited[node.v] >= node.Y) continue;
    visited[node.v] = node.Y;
    ans = max(ans, node.Y);

    for (int u : E[node.v]) {
      int p = P[u - 1];
      Node next(u, node.X, node.Y);

      if (node.X > p) {
        next.X = p;
        next.Y += 1;
      }

      pque.push(next);
    }
  }

  cout << ans << endl;

  return 0;
}
0