Submission #1130633

#TimeUsernameProblemLanguageResultExecution timeMemory
1130633am_aadvikJakarta Skyscrapers (APIO15_skyscraper)C++20
36 / 100
555 ms327680 KiB
#include <iostream>
#include<vector>
#include<set>
const int inf = 1e9;
using namespace std;

vector<pair<int,int>> g[30005];
set<pair<int, int>> q; //{dist, pos}
vector<int> dist;
int32_t main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(NULL); cout.tie(NULL);

	int n, m, s = -1, t = -1; cin >> n >> m;
	dist.assign(n + 1, inf);
	for (int i = 0; i < m; ++i) {
		int x, y; cin >> x >> y;
		if (i == 0) s = x; 
		if (i == 1) t = x;
		for (int j = x + y, val = 1; j < n; j += y, ++val)
			g[x].push_back({ j, val });
		for (int j = x - y, val = 1; j >= 0; j -= y, ++val)
			g[x].push_back({ j, val });
	}

	dist[s] = 0;
	q.insert({ 0, s });
	while (q.size()) {
		auto x = *q.begin(); q.erase(q.begin());
		if (x.second == t) { cout << x.first; return 0; }
		for(auto y: g[x.second])
			if (dist[y.first] > (x.first + y.second)) {
				if (dist[y.first] < inf) q.erase({ dist[y.first], y.first });
				dist[y.first] = (x.first + y.second);
				q.insert({ dist[y.first], y.first });
			}
	}
	cout << -1;
}
#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...