Submission #328986

#TimeUsernameProblemLanguageResultExecution timeMemory
328986minoumJakarta Skyscrapers (APIO15_skyscraper)C++17
57 / 100
1089 ms2920 KiB
#include<bits/stdc++.h>
 
using namespace std;
typedef long long int ll;
 
const int MAXN = 3e4 + 1, inf = INT_MAX / 2;
int n, m, b[2], d[MAXN], tmp;
vector <int> ps[MAXN];
priority_queue <pair<int,int>> q;
 
int main()
{
//	ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
//	cin >> n >> m;
	scanf("%d", &n); scanf("%d", &m);
	int bb, pp;
	for(int i = 0; i < m; i++){
//		cin >> bb >> pp;
		scanf("%d", &bb); scanf("%d", &pp);
		ps[bb].push_back({pp});
		if(i == 0) b[0] = bb;
		if(i == 1) b[1] = bb;
	}
	for(int i = 0; i < n; i++) d[i] = inf;
	d[b[0]] = 0;
	q.push({0, b[0]});
	while(!q.empty()){
		int u = q.top().second, dd = -q.top().second; q.pop();
		if(d[u] < dd) continue;
//		if(u == b[1] || d[u] >= inf) break;
		for(int k: ps[u]){
			for(int i = u % k; i < n; i += k){
				tmp = abs(u - i);
				if(d[i] > d[u] + (tmp / k)){
					d[i] = d[u] + (tmp / k);
					q.push({-d[i], i});
				}
			}
		}
	}
//	cout << ((d[b[1]] >= inf)?-1:d[b[1]]);
	if(d[b[1]] >= inf) printf("%d", -1);
	else printf("%d", d[b[1]]);
	return 0; 
}

Compilation message (stderr)

skyscraper.cpp: In function 'int main()':
skyscraper.cpp:15:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   15 |  scanf("%d", &n); scanf("%d", &m);
      |  ~~~~~^~~~~~~~~~
skyscraper.cpp:15:24: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   15 |  scanf("%d", &n); scanf("%d", &m);
      |                   ~~~~~^~~~~~~~~~
skyscraper.cpp:19:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   19 |   scanf("%d", &bb); scanf("%d", &pp);
      |   ~~~~~^~~~~~~~~~~
skyscraper.cpp:19:26: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   19 |   scanf("%d", &bb); scanf("%d", &pp);
      |                     ~~~~~^~~~~~~~~~~
#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...