ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 백준 1526번: 가장 큰 금민수
    시뮬레이션(Simulation) 2018. 7. 19. 16:36
    반응형

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


    1. 문제

    4와 7 로 이루어진 숫자중 가장 큰 숫자를 찾는 문제


    2. 알고리즘

    키워드 - 시뮬레이션

    접근법 - 입력되는 N 숫자에서 4와 7로 이루어진 최소 값과, 최대 값을 구하여 검색 범위를 좁혀서 처리 한다.

    숫자의 크기가 1000000 임으로 INT(정수)형 변수로 처리 가능하다.


    만약 숫자의 크기가 아닌 길이가 1000000 이라면 정수로 처리가 불가능 하다.


    현재 적용된 코드는 범위를 정하지 않고 완전 탐색으로 구현 하였으니 참고 하세요.


    3. 코드


    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
    58
    59
    60
    #include <iostream>
    #include <sstream>
    #include <string>
    #include <algorithm>
    #include <functional>
    #include <vector>
    #include <list>
    #include <queue>
    #include <deque>
    #include <map>
    #include <set>
    #include <stack>
    #include <cstring>
     
    using namespace std;
     
    #define MAX_SIZE 100
    #define INF 0x7fffffff
    #define CENDL "\n"
    #define ll long long
     
    bool check(int n) {
     
        bool isOk = true;
        while(n) {
            int cand = n % 10;
            n /= 10;
            // 일의 자리 숫자가 4, 7 이면 금민수 아니면 false
            if (cand == || cand == 7) {
                continue;
            }
            else {
                isOk = false;
                break;
            }
            
        }
     
        return isOk;
     
    int main() {
     
        cin.tie(0);
        std::ios::sync_with_stdio(false);
     
        int n; cin >> n;
     
        int sol = 4;
        for (int i=4; i<=n; i++) {
            if (check(i)) {
                sol = i;
            }
        }
     
        cout << sol << CENDL;
     
        return 0;
    }
     
    cs

    반응형

    '시뮬레이션(Simulation)' 카테고리의 다른 글

    백준 1547번: 공  (0) 2020.02.06

    댓글

Designed by Tistory.