제출 #678272

#제출 시각아이디문제언어결과실행 시간메모리
678272penguin133Jakarta Skyscrapers (APIO15_skyscraper)C++17
36 / 100
1083 ms23200 KiB
#include <bits/stdc++.h>
using namespace std;
 
#define int long long
#define pi pair<int, int>
#define pii pair<int, pi>
#define fi first
#define se second
#ifdef _WIN32
#define getchar_unlocked _getchar_nolock
#endif
 
int n, m;
int S[30005], P[30005];
int dist[30005];
vector<int> pos[30005];
int go[2005][2005];
bool vis[300005];
queue<int> q[30005];
void solve(){
	cin >> n >> m;
	for(int i=0;i<m;i++)cin >> S[i] >> P[i], pos[S[i]].push_back(i);
	for(int i=0;i<m;i++)dist[i] = 1e9;
	dist[0] = 0;
	q[0].push(0);
	for(int i=0;i<30000;i++){
		while(!q[i].empty()){
			int j = q[i].front(); q[i].pop();
			if(dist[j] < i)continue;
			for(int a=S[j];a<n;a+=P[j]){
				for(auto x : pos[a]){			
					if(dist[x] <= dist[j] + abs(S[j] - S[x]) / P[j])continue;
					dist[x] = i + abs(S[j] - S[x]) / P[j];
					if(dist[x] > 30000)continue;
					q[dist[x]].push(x);
				}
			}
			for(int a=S[j] - P[j]; a >= 0; a-= P[j]){
				for(auto x : pos[a]){			
					if(dist[x] <= dist[j] + abs(S[j] - S[x]) / P[j])continue;
					dist[x] = i + abs(S[j] - S[x]) / P[j];
					if(dist[x] > 30000)continue;
					q[dist[x]].push(x);
				}
			}
		}
	}
	cout << (dist[1] == 1e9 ? -1 : dist[1]);
}
 
main(){
	ios::sync_with_stdio(0);cin.tie(0);
	int tc = 1;
	//cin >> tc;
	for(int tc1=1;tc1<=tc;tc1++){
		// cout << "Case #" << tc1 << ": ";
		solve();
	}
}

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

skyscraper.cpp:51:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   51 | main(){
      | ^~~~
#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...