Hoon222y

[BOJ 1459] 걷기 본문

코딩/BOJ & 알고스팟

[BOJ 1459] 걷기

hoon222y 2017. 10. 5. 23:50

https://www.acmicpc.net/problem/1459


단순하게 생각해서 풀면된다. 주의해야 할 점은 대각선을 이용해서 갈때 더 가까워지는 지점이 있다는 점과 ... 자료형 int범위 벗어난다는 것이다 ;


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
#include <iostream>
#include <cstdio>
#include <vector>
#include <cmath>
#include <algorithm>
#include <cstring>
#include <set>
#include <queue>
typedef long long ll;
 
using namespace std;
 
ll x,y,c,d;
 
int main(){
    cin >>>> y>>>>d;
    if(x>y)
        swap(x, y);
    
    ll ans = min((x+y)*c , x*d+(y-x)*c);
    
    if((y-x)%2 == 1){
        ans= min(ans , (y-1)*+c);
    }else{
        ans = min(ans , y*d);
    }
    cout <<ans <<endl;
}
cs


'코딩 > BOJ & 알고스팟' 카테고리의 다른 글

[BOJ 4196] 도미노  (0) 2017.10.06
[BOJ 2150] (SCC) Strongly Connected Component  (0) 2017.10.06
[BOJ 2553] 마지막 팩토리얼 수  (1) 2017.10.04
[BOJ 9663] N-Queen  (0) 2017.10.04
[BOJ 11051] 이항계수2  (0) 2017.10.03
Comments