답안 #924337

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
924337 2024-02-08T21:04:35 Z vjudge1 Maze (JOI23_ho_t3) C++17
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>

using namespace std;

int R, C, N;

bool isBest(int d1, int d2, pair<int, int>& p){
	int mn1 = min(d1, d2);
	int mx1 = max(d1, d2);
	int mn2 = min(p.first, p.second);
	int mx2 = max(p.first, p.second);
	if(!((mx1 <= N && mn1 < N) || (mx2 <= N && mn2 < N))) return false;
	if(mx1 == mx2) return mn1 < mn2;
	else return mx1 < mx2;
}

int main(){
	ios_base::sync_with_stdio(0);
	cin.tie(0);

	cin >> R >> C >> N;
	int Sr, Sc, Gr, Gc; cin >> Sr >> Sc >> Gr >> Gc; Sr--; Sc--; Gr--; Gc--;
	vector<string> v(R);
	for(auto &i : v) cin >> i;
	vector<pair<int, int>> added = {{Sr, Sc}};
	vector<vector<int>> dist(R, vector<int>(C, 1e9));
	vector<vector<bool>> vis(R, vector<bool>(C, false));
	vector<vector<pair<int, int>>> best(R, vector<pair<int, int>>(C, {1e9, 1e9}));
	dist[Sr][Sc] = 0;
	for(int t = 0; t < 2*R*C; t++){
		if(t==0){
			//Time to freely expand;
			queue<pair<int, int>> q;
			for(pair<int, int>& p : added){
				q.push(p);
			}
			while(!q.empty()){
				int i = q.front().first; int j = q.front().second; q.pop();
				if(i == Gr && j == Gc){
					cout << dist[i][j] << "\n";
					return 0;
				}
				// cout << "i " << i+1 << " j " << j+1 << " dist " << dist[i][j] << "\n";
				for(int ai = -1; ai <= 1; ai++){
					for(int aj = -1; aj <= 1; aj++){
						if(ai * aj != 0 || i + ai < 0 || i + ai >= R || j + aj < 0 || j + aj >= C) continue;
						int ni = i + ai; int nj = j + aj;
						// cout << "ni " << ni << " nj " << nj << "\n";
						if(v[ni][nj] == '.' && dist[ni][nj] > dist[i][j]){
							dist[ni][nj] = dist[i][j];
							added.push_back({ni, nj});
							q.push({ni, nj});
						}
					}
				}
			}
		}else{
			set<tuple<int, int, int>> q;
			int d = 0;
			for(pair<int, int>& p : added){
				q.push({0, 0, p.first*C+p.second});
				best[p.first][p.second] = {0, 0};
				d = dist[p.first][p.second];
				vis[p.first][p.second] = false;
			}
			added.clear();
			while(!q.empty()){
				int val = get<2>(q.top()); q.pop();
				int i = val/C; int j = val%C;
				if(i == Gr && j == Gc){
					cout << dist[i][j] << "\n";
					return 0;
				}
				if(vis[i][j]) continue;
				vis[i][j] = true;
				if(best[i][j].first >= N || best[i][j].second >= N){
					added.push_back({i, j});
				}
				for(int ai = -1; ai <= 1; ai++){
					for(int aj = -1; aj <= 1; aj++){
						if(ai * aj != 0 || i + ai < 0 || i + ai >= R || j + aj < 0 || j + aj >= C) continue;
						int ni = i + ai; int nj = j + aj;
						if(dist[ni][nj] > d && isBest(best[i][j].first+abs(ai), best[i][j].second+abs(aj), best[ni][nj])){
							dist[ni][nj] = d+1;
							best[ni][nj] = {best[i][j].first+abs(ai), best[i][j].second+abs(aj)};
							q.push({max(best[ni][nj].first, best[ni][nj].second), min(best[ni][nj].first, best[ni][nj].second), ni*C+ nj});
						}else if(dist[ni][nj] > d + 1 && v[ni][nj] == '.'){
							dist[ni][nj] = d + 1;
							q.push({1e9, 1e9, ni*C+ nj});
						}
					}
				}
			}
		}
	}
	cout << dist[Gr][Gc] << "\n";
}

Compilation message

Main.cpp: In function 'int main()':
Main.cpp:61:7: error: 'class std::set<std::tuple<int, int, int> >' has no member named 'push'
   61 |     q.push({0, 0, p.first*C+p.second});
      |       ^~~~
Main.cpp:68:24: error: 'class std::set<std::tuple<int, int, int> >' has no member named 'top'
   68 |     int val = get<2>(q.top()); q.pop();
      |                        ^~~
Main.cpp:68:34: error: 'class std::set<std::tuple<int, int, int> >' has no member named 'pop'
   68 |     int val = get<2>(q.top()); q.pop();
      |                                  ^~~
Main.cpp:86:10: error: 'class std::set<std::tuple<int, int, int> >' has no member named 'push'
   86 |        q.push({max(best[ni][nj].first, best[ni][nj].second), min(best[ni][nj].first, best[ni][nj].second), ni*C+ nj});
      |          ^~~~
Main.cpp:89:10: error: 'class std::set<std::tuple<int, int, int> >' has no member named 'push'
   89 |        q.push({1e9, 1e9, ni*C+ nj});
      |          ^~~~