結果

問題 No.1382 Travel in Mitaru city
ユーザー 夜
提出日時 2021-02-08 17:22:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,002 bytes
コンパイル時間 809 ms
コンパイル使用メモリ 101,580 KB
実行使用メモリ 10,352 KB
最終ジャッジ日時 2024-07-05 19:14:17
合計ジャッジ時間 8,589 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,760 KB
testcase_01 AC 3 ms
5,504 KB
testcase_02 AC 3 ms
5,632 KB
testcase_03 AC 3 ms
5,632 KB
testcase_04 AC 3 ms
5,632 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 102 ms
8,960 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 106 ms
8,960 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 79 ms
8,576 KB
testcase_37 AC 14 ms
6,016 KB
testcase_38 AC 91 ms
8,960 KB
testcase_39 AC 24 ms
6,528 KB
testcase_40 AC 66 ms
8,192 KB
testcase_41 AC 75 ms
8,576 KB
testcase_42 AC 90 ms
8,960 KB
testcase_43 AC 77 ms
8,704 KB
testcase_44 AC 32 ms
6,784 KB
testcase_45 AC 71 ms
8,320 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 76 ms
8,576 KB
testcase_52 AC 89 ms
9,216 KB
testcase_53 AC 22 ms
6,400 KB
testcase_54 AC 42 ms
7,296 KB
testcase_55 AC 87 ms
9,216 KB
testcase_56 AC 31 ms
6,784 KB
testcase_57 AC 59 ms
7,936 KB
testcase_58 AC 11 ms
6,016 KB
testcase_59 AC 29 ms
6,784 KB
testcase_60 AC 86 ms
8,960 KB
testcase_61 WA -
testcase_62 AC 3 ms
5,632 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <deque>
#include <cstdio>
#include <set>
#include <map>
#include <bitset>
#include <stack>
#include <cctype>
using namespace std;
vector<vector<int>> vec(100010);
bool b[100010] = { false };
int p[100010];
int main() {
	int n, m, s, t;
	cin >> n >> m >> s >> t;
	for (int i = 1; i <= n; i++) {
		cin >> p[i];
	}
	for (int i = 0; i < m; i++) {
		int a, b;
		cin >> a >> b;
		vec[a].emplace_back(b);
		vec[b].emplace_back(a);
	}
	int ans = 0;
	queue<pair<int, int>> que;
	que.push(make_pair(s, p[s]));
	b[s] = true;
	while (!que.empty()) {
		int x = que.front().first;
		int y = que.front().second;
		que.pop();
		for (int i = 0; i < vec[x].size(); i++) {
			if (!b[vec[x][i]]) {
				if (y > p[vec[x][i]]) {
					ans++;
				}
				que.push(make_pair(vec[x][i], min(y, p[vec[x][i]])));
				b[vec[x][i]] = true;
			}
		}
	}
	cout << ans << endl;
}

0