1일1알

백준 20208번 진우의 민트초코우유 C++ 본문

알고리즘

백준 20208번 진우의 민트초코우유 C++

영춘권의달인 2023. 3. 1. 14:22

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

 

20208번: 진우의 민트초코우유

첫번째 줄에 민초마을의 크기인 N과 진우의 초기체력 M, 그리고 민트초코우유를 마실때 마다 증가하는 체력의 양 H가 공백을 두고 주어진다. N, M, H는 모두 10보다 작거나 같은 자연수이다. 두번째

www.acmicpc.net

 

bfs, 어떤 위치의 우유를 먹었는지는 비트를 통해 판별

 

#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>

using namespace std;
using int64 = long long;

struct Info {
    int row;
    int col;
    int health;
    int mint;
    int cnt;
};

int dRow[4] = { -1,0,1,0 };
int dCol[4] = { 0,1,0,-1 };

int n, m, h;
int check = 1;
vector<vector<int>> board;
vector<vector<vector<bool>>> found;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);

    cin >> n >> m >> h;
    board = vector<vector<int>>(n, vector<int>(n));
    found = vector<vector<vector<bool>>>(n, vector<vector<bool>>(n, vector<bool>(1024, false)));
    queue<Info> q;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            cin >> board[i][j];
            if (board[i][j] == 1) {
                found[i][j][0] = true;
                q.push({ i,j,m,0,0 });
                board[i][j] = -1;
            }
            if (board[i][j] == 2) {
                board[i][j] = check;
                check <<= 1;
            }
        }
    }
    int ans = 0;
    while (!q.empty()) {
        auto curr = q.front();
        q.pop();
        if (board[curr.row][curr.col] == -1) {
            ans = max(ans, curr.cnt);
        }
        if (curr.health == 0) continue;
        for (int i = 0; i < 4; i++) {
            int nextRow = curr.row + dRow[i];
            int nextCol = curr.col + dCol[i];
            int nextHealh = curr.health - 1;
            int nextMint = curr.mint;
            int nextCnt = curr.cnt;
            if (nextRow < 0 || nextRow >= n) continue;
            if (nextCol < 0 || nextCol >= n) continue;
            if (board[nextRow][nextCol] > 0) {
                if ((nextMint & board[nextRow][nextCol]) == 0) {
                    nextMint += board[nextRow][nextCol];
                    nextCnt++;
                    nextHealh += h;
                }
            }
            if (found[nextRow][nextCol][nextMint]) continue;
            found[nextRow][nextCol][nextMint] = true;
            q.push({ nextRow,nextCol,nextHealh,nextMint,nextCnt });
        }
    }
    cout << ans;
}

'알고리즘' 카테고리의 다른 글

백준 22233번 가희와 키워드 C++  (0) 2023.03.03
백준 2942번 퍼거슨과 사과 C++  (0) 2023.03.02
백준 11332번 시간초과 C++  (1) 2023.02.28
백준 14713번 앵무새 C++  (0) 2023.02.27
백준 1972번 놀라운 문자열 C++  (0) 2023.02.25