제출 #569041

#제출 시각아이디문제언어결과실행 시간메모리
569041AlanJakarta Skyscrapers (APIO15_skyscraper)C++17
22 / 100
7 ms3424 KiB
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
 
vector<ll> adj[30000];
 
struct node {
	ll u, di, vel;
};
 
int main() {
	using h = hash<ll>;
	auto hash = [] (const pair<ll, ll> a) {
		ll res = 17;
		res = res*31 + h() (a.first);
		return res*31 + h() (a.second);
	};
	unordered_map<pair<ll, ll>, bool, decltype(hash)> vis (8, hash);
	ll n, m, b, p, d0, d1;
	cin >> n >> m;
	for (ll i = 0; i < m; i++) {
		cin >> b >> p;
		if (i == 0) d0 = b;
		if (i == 1) d1 = b;
		if (0 <= b+p && b+p < n) adj[b].push_back(p);
		if (0 <= b-p && b-p < n) adj[b].push_back(-p);
	}
	queue<node> bfs;
	bfs.push({d0, 0, 0});
	while (!bfs.empty()) {
		auto& [u, di, vel] = bfs.front();
		if (u == d1) {
			cout << di << "\n";
			return 0;
		}
		bfs.pop();
		if (!vis[{u, vel}] && u+vel >= 0 && u+vel < n) bfs.push({u+vel, di+1, vel}), vis[{u, vel}] = true;
		for (auto& s : adj[u]) if (!vis[{u, s}]) bfs.push({u+s, di+1, s}), vis[{u, s}] = true;
	}
	cout << "-1\n";
	
	return 0;
}

컴파일 시 표준 에러 (stderr) 메시지

skyscraper.cpp: In function 'int main()':
skyscraper.cpp:32:3: warning: 'd1' may be used uninitialized in this function [-Wmaybe-uninitialized]
   32 |   if (u == d1) {
      |   ^~
skyscraper.cpp:29:10: warning: 'd0' may be used uninitialized in this function [-Wmaybe-uninitialized]
   29 |  bfs.push({d0, 0, 0});
      |  ~~~~~~~~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...