티스토리 뷰
다익스트라를 이용하는 문제다
왼쪽 오른쪽으로 최대 L,R만큼 갈 수 있다
그럼 왼쪽으로 갈 때 가중치 100, 오른쪽으로 갈 때 10억을 주자
그리고 다익스트라를 돌려 모든정점에 최단거리를 구하자
그 후 각 정점마다 10억으로 나누고 100으로 나눠 값을 보자
그게 곧 왼쪽, 오른쪽으로 간 횟수다
결국 그 값들과 L,R을 비교하면 갈 수 있는지 없는지 확인 가능하다
소스코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#include <iostream>
#include <algorithm>
#include <queue>
#include <cstring>
using namespace std;
#define ll long long
ll n,m,l,r;
ll L = 1e2;
ll R = 1e9;
ll d[1010][1010];
int dx[4]={0,0,-1,1};
int dy[4]={1,-1,0,0};
int map[1010][1010],Rx,Ry;
int main(){
//freopen("input.txt","r",stdin);
memset(d,-1,sizeof(d));
scanf(" %lld %lld %lld %lld",&n,&m,&l,&r);
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
scanf(" %1d",&map[i][j]);
if(map[i][j]==2) Rx=i,Ry=j;
}
}
priority_queue<pair<ll,pair<int,int>>> pq;
pq.push({(ll)0,{Rx,Ry}});
pq.pop();
if(d[x][y] != -1) continue;
d[x][y]=cost;
for(int i=0;i<4;i++){
int nx = x+dx[i];
int ny = y+dy[i];
ll ncost = -cost;
if(i==0) ncost -= R;
if(i==1) ncost -= L;
if(0<=nx && nx<n && 0<=ny && ny<m && (map[nx][ny] !=1)){
}
}
}
int ans=0;
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
if(d[i][j]==-1) continue;
ll rcnt = d[i][j]/R;
ll lcnt = (d[i][j]%R)/L;
if(rcnt<=r && lcnt<=l) ans++;
}
}
printf("%d\n",ans);
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
|
'알고리즘 > BOJ' 카테고리의 다른 글
[백준] 9370 미확인 도착지 (0) | 2019.08.27 |
---|---|
[백준] 5719 거의 최단 경로 (0) | 2019.08.27 |
[백준] 1987 알파벳 (0) | 2019.08.27 |
[백준] 3649 로봇 프로젝트 (0) | 2019.08.27 |
[백준] 3020 개똥벌레 (0) | 2019.08.27 |
댓글