답안 #943988

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
943988 2024-03-12T06:16:05 Z Amaarsaa 악어의 지하 도시 (IOI11_crocodile) C++14
컴파일 오류
0 ms 0 KB
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair < ll, ll >;

int travel_plan(int N, int M, int R[][2], int L[], int K, int P[]){
	ll i, x, c, y, s, p, X;
	vector < pair < ll,ll > > adj[N + 2];
	
	for (i = 0; i < M; i ++) {
		x = R[i][0];
		y = R[i][1];
		adj[x].push_back({y, L[i]});
		adj[y].push_back({x, L[i]});
	}
	priority_queue < pll, vector < pll > , greater < pll > > pq;
	ll D[N + 2][2];
	for (i = 0; i < N; i ++) D[i] = {ll(1e18), ll(1e18)};
	for (i = 0; i < K; i ++) {
		pq.push({0, P[i]});
		D[P[i]] = {0, 0};
	}
	
	while(!pq.empty()) {
		x = pq.top().second;
		c = pq.top().first;
		pq.pop();
		if ( D[x][1] != c) continue;
		
		for ( pair < ll, ll > & pa : adj[x]) {
			X = pa.first;
			s = c + pa.second;
			p = D[X][1];
			if ( s < D[X][0]) {
				if ( D[X][0] < 1e18 && D[X][1] != D[X][0]) {
					D[X][1]= D[X][0];
					pq.push({D[X][1], X});
				}
				D[X][0] = s;
			}
			else {
				if ( s < D[x][1]) {
					D[X][1] = s;
					pq.push({D[X][1], X});
				}
			}
		}
	}
  	return D[0][1];
}

Compilation message

crocodile.cpp: In function 'int travel_plan(int, int, int (*)[2], int*, int, int*)':
crocodile.cpp:18:32: error: assigning to an array from an initializer list
   18 |  for (i = 0; i < N; i ++) D[i] = {ll(1e18), ll(1e18)};
      |                           ~~~~~^~~~~~~~~~~~~~~~~~~~~~
crocodile.cpp:21:11: error: assigning to an array from an initializer list
   21 |   D[P[i]] = {0, 0};
      |   ~~~~~~~~^~~~~~~~