結果

問題 No.1301 Strange Graph Shortest Path
ユーザー 👑 ygussanyygussany
提出日時 2020-11-27 22:31:16
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 2,593 bytes
コンパイル時間 1,315 ms
コンパイル使用メモリ 30,384 KB
実行使用メモリ 13,624 KB
最終ジャッジ日時 2023-10-09 21:32:24
合計ジャッジ時間 9,080 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,708 KB
testcase_01 AC 2 ms
6,800 KB
testcase_02 AC 204 ms
13,240 KB
testcase_03 AC 152 ms
12,660 KB
testcase_04 WA -
testcase_05 AC 98 ms
13,380 KB
testcase_06 WA -
testcase_07 AC 258 ms
13,232 KB
testcase_08 AC 110 ms
11,920 KB
testcase_09 AC 233 ms
13,032 KB
testcase_10 AC 107 ms
12,908 KB
testcase_11 AC 180 ms
12,816 KB
testcase_12 AC 262 ms
12,800 KB
testcase_13 AC 215 ms
12,856 KB
testcase_14 AC 203 ms
12,208 KB
testcase_15 AC 197 ms
12,288 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 210 ms
13,040 KB
testcase_19 WA -
testcase_20 AC 126 ms
12,960 KB
testcase_21 AC 151 ms
13,312 KB
testcase_22 AC 231 ms
12,648 KB
testcase_23 AC 213 ms
13,384 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 202 ms
12,600 KB
testcase_27 AC 168 ms
12,796 KB
testcase_28 AC 90 ms
12,464 KB
testcase_29 WA -
testcase_30 AC 195 ms
13,068 KB
testcase_31 WA -
testcase_32 AC 2 ms
7,044 KB
testcase_33 AC 49 ms
13,452 KB
testcase_34 AC 97 ms
13,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

typedef struct {
	int key, id;
} data;
 
typedef struct {
	data obj[200001];
	int size;
} min_heap;

void push(data x, min_heap* h)
{
	int i = ++(h->size), j = i >> 1;
	data tmp;
	h->obj[i] = x;
	while (j > 0) {
		if (h->obj[i].key < h->obj[j].key) {
			tmp = h->obj[j];
			h->obj[j] = h->obj[i];
			h->obj[i] = tmp;
			i = j;
			j >>= 1;
		} else break;
	}
}

data pop(min_heap* h)
{
	int i = 1, j = 2;
	data output = h->obj[1], tmp;
	h->obj[1] = h->obj[(h->size)--];
	while (j <= h->size) {
		if (j < h->size && h->obj[j^1].key < h->obj[j].key) j ^= 1;
		if (h->obj[j].key < h->obj[i].key) {
			tmp = h->obj[j];
			h->obj[j] = h->obj[i];
			h->obj[i] = tmp;
			i = j;
			j = i << 1;
		} else break;
	}
	return output;
}

typedef struct List {
	struct List *next;
	int v, id, memo;
	long long cost;
} list;

int main()
{
	int i, N, M, u, w, c, d;
	list *adj[100001] = {}, e[200001], *p;
	scanf("%d %d", &N, &M);
	for (i = 0; i < M; i++) {
		scanf("%d %d %d %d", &u, &w, &c, &d);
		e[i*2].v = w;
		e[i*2+1].v = u;
		e[i*2].cost = c;
		e[i*2+1].cost = c;
		e[i*2].memo = d;
		e[i*2+1].memo = d;
		e[i*2].id = i * 2;
		e[i*2+1].id = i * 2 + 1;
		e[i*2].next = adj[u];
		e[i*2+1].next = adj[w];
		adj[u] = &(e[i*2]);
		adj[w] = &(e[i*2+1]);
	}
	
	int prev[2][100001], flag[2][100001] = {};
	long long dist[2][100001];
	for (i = 1; i <= N; i++) {
		dist[0][i] = 1LL << 60;
		dist[1][i] = 1LL << 60;
		prev[0][i] = -1;
		prev[1][i] = -1;
	}

	data da;
	min_heap h;
	h.size = 0;
	dist[0][1] = 0;
	da.key = 0;
	da.id = 1;
	push(da, &h);
	while (h.size > 0) {
		u = pop(&h).id;
		if (flag[0][u] != 0) continue;
		flag[0][u] = 0;
		for (p = adj[u]; p != NULL; p = p->next) {
			w = p->v;
			if (dist[0][u] + p->cost < dist[0][w]) {
				dist[0][w] = dist[0][u] + p->cost;
				prev[0][w] = p->id;
				da.key = dist[0][w];
				da.id = w;
				push(da, &h);
			}
		}
	}
	for (i = prev[0][N]; i != -1; i = prev[0][e[i^1].v]) {
		e[i].cost = e[i].memo;
		e[i^1].cost *= -1;
	}
	for (i = 0; i < M; i++) {
		u = e[i*2+1].v;
		w = e[i*2].v;
		e[i*2].cost += dist[0][u] - dist[0][w];
		e[i*2+1].cost += dist[0][w] - dist[0][u];
	}
	
	dist[1][1] = 0;
	da.key = 0;
	da.id = 1;
	push(da, &h);
	while (h.size > 0) {
		u = pop(&h).id;
		if (flag[1][u] != 0) continue;
		flag[1][u] = 1;
		for (p = adj[u]; p != NULL; p = p->next) {
			w = p->v;
			if (dist[1][u] + p->cost < dist[1][w]) {
				dist[1][w] = dist[1][u] + p->cost;
				prev[1][w] = p->id;
				da.key = dist[1][w];
				da.id = w;
				push(da, &h);
			}
		}
	}
	printf("%lld\n", dist[0][N] * 2 + dist[1][N]);
	fflush(stdout);
	return 0;
}
0