Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

70-9kyo-hwang #233

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
#include <string>
#include <vector>

using namespace std;

vector<vector<int>> Tree;
pair<int, int> DFS(const vector<int>& InLosses, const int Head)
{
const int LossIfHeadParticipation = InLosses[Head - 1];

if(Tree[Head].empty())
{
return {0, LossIfHeadParticipation};
}

int TotalLosses = 0, MinLossDifference = 1e9;
bool bMemberParticipation = false;

for(const int Member : Tree[Head])
{
const auto& [LossIfNotParticipation, LossIfParticipation] = DFS(InLosses, Member);
TotalLosses += min(LossIfNotParticipation, LossIfParticipation);

if(LossIfNotParticipation >= LossIfParticipation)
{
bMemberParticipation = true;
}

MinLossDifference = min(MinLossDifference, LossIfParticipation - LossIfNotParticipation);
}

if(bMemberParticipation)
{
return {TotalLosses, LossIfHeadParticipation + TotalLosses};
}
else
{
return {TotalLosses + MinLossDifference, LossIfHeadParticipation + TotalLosses};
}
}

int solution(vector<int> InSales, vector<vector<int>> InLinks)
{
Tree.resize(InSales.size() + 1);
for(const vector<int>& Link : InLinks)
{
int a = Link[0], b = Link[1];
Tree[a].emplace_back(b);
}

const auto& [LossIfNotParticipation, LossIfParticipation] = DFS(InSales, 1);
return min(LossIfNotParticipation, LossIfParticipation);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#include <string>
#include <vector>
#include <algorithm>

using namespace std;

const vector<pair<int, int>> Offset{{-1, 0}, {0, 1}, {1, 0}, {0, -1}};

vector<vector<int>> Board;

bool OutOfBound(int r, int c)
{
return r < 0 || r >= Board.size() || c < 0 || c >= Board[0].size();
}

int DFS(pair<int, int> ALoc, pair<int, int> BLoc)
{
const auto& [r, c] = ALoc;
if(Board[r][c] == 0)
{
return 0;
}

int Answer = 0;
Board[r][c] = 0;

for(const auto& [dr, dc] : Offset)
{
int nr = r + dr, nc = c + dc;
if(OutOfBound(nr, nc) || Board[nr][nc] == 0)
{
continue;
}

int RetVal = DFS(BLoc, {nr, nc}) + 1;

if(Answer % 2 == 0 && RetVal % 2 == 1) Answer = RetVal;
else if(Answer % 2 == 0 && RetVal % 2 == 0) Answer = max(Answer, RetVal);
else if(Answer % 2 == 1 && RetVal % 2 == 1) Answer = min(Answer, RetVal);
}

Board[r][c] = 1;
return Answer;
}

int solution(vector<vector<int>> InBoard, vector<int> InALoc, vector<int> InBLoc)
{
Board = InBoard;
return DFS({InALoc[0], InALoc[1]}, {InBLoc[0], InBLoc[1]});
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
#include <string>
#include <vector>
#include <functional>
#include <set>

using namespace std;
using FPoint = pair<int, int>;

vector<vector<FPoint>> GetBlocksFrom(vector<vector<int>>& Board, bool IsBoard = true)
{
const vector<FPoint> Offset{{-1, 0}, {0, 1}, {1, 0}, {0, -1}};
auto OutOfBound = [&](int x, int y)
{
return x < 0 || x >= Board.size() || y < 0 || y >= Board.size();
};

vector<vector<FPoint>> Blocks;

function<void(int, int)> DFS = [&](int x, int y)
{
Blocks.back().emplace_back(x, y);
Board[x][y] = (IsBoard ? 1 : 0);

for(const auto& [dx, dy] : Offset)
{
int nx = x + dx, ny = y + dy;
if(!OutOfBound(nx, ny) && Board[nx][ny] == (IsBoard ? 0 : 1))
{
DFS(nx, ny);
}
}
};

for(int i = 0; i < Board.size(); ++i)
{
for(int j = 0; j < Board.size(); ++j)
{
if(IsBoard && Board[i][j] == 0
|| !IsBoard && Board[i][j] == 1)
{
Blocks.push_back({});
DFS(i, j);
}
}
}

return Blocks;
}

vector<vector<int>> GetGridFrom(const vector<FPoint>& Block)
{
auto [MinX, MinY] = Block[0];
auto [MaxX, MaxY] = Block[0];

for(const auto& [x, y] : Block)
{
if(x < MinX) MinX = x;
else if(x > MaxX) MaxX = x;

if(y < MinY) MinY = y;
else if(y > MaxY) MaxY = y;
}

vector<vector<int>> Grid(MaxX - MinX + 1, vector<int>(MaxY - MinY + 1, 0));
for(const auto& [x, y] : Block)
{
Grid[x - MinX][y - MinY] = 1;
}

return Grid;
}

int Rotate(vector<vector<int>>& Grid)
{
vector<vector<int>> Rotated(Grid[0].size(), vector<int>(Grid.size(), 0));
int NumCell = 0;

for(int i = 0; i < Grid.size(); ++i)
{
for(int j = 0; j < Grid[0].size(); ++j)
{
if(Grid[i][j] == 1) NumCell++;
Rotated[j][Grid.size() - 1 - i] = Grid[i][j];
}
}

Grid = Rotated;
return NumCell;
}

int solution(vector<vector<int>> InGameBoard, vector<vector<int>> InTable)
{
vector<vector<FPoint>> BoardBlocks = GetBlocksFrom(InGameBoard, true);
vector<vector<FPoint>> TableBlocks = GetBlocksFrom(InTable, false);

set<vector<FPoint>> UsedTableBlocks;
int Answer = 0;

for(const vector<FPoint>& BoardBlock : BoardBlocks)
{
bool IsFilled = false;
vector<vector<int>> BoardBlockGrid = GetGridFrom(BoardBlock);

for(const vector<FPoint>& TableBlock : TableBlocks)
{
if(IsFilled) break;
if(UsedTableBlocks.count(TableBlock)) continue;

vector<vector<int>> TableBlockGrid = GetGridFrom(TableBlock);
for(int i = 0; i < 4; ++i)
{
int NumCell = Rotate(TableBlockGrid);
if(BoardBlockGrid == TableBlockGrid)
{
Answer += NumCell;
UsedTableBlocks.emplace(TableBlock);
IsFilled = true;
break;
}
}
}
}

return Answer;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
#include <string>
#include <vector>
#include <set>
#include <algorithm>

using namespace std;

struct Comparator
{
bool operator()(const pair<int, int>& Lhs, const pair<int, int>& Rhs) const
{
const auto& [LhsCard, LhsCoin] = Lhs;
const auto& [RhsCard, RhsCoin] = Rhs;

return LhsCoin == RhsCoin ? LhsCard < RhsCard : LhsCoin < RhsCoin;
}
};

int solution(int InCoin, vector<int> InCards)
{
const int N = (int)InCards.size();
const int RequiredSum = N + 1;
reverse(InCards.begin(), InCards.end());

set<pair<int, int>, Comparator> Deck;
for(int i = 0; i < N / 3; ++i)
{
Deck.emplace(InCards.back(), 0); InCards.pop_back();
}

int Round;
for(Round = 1; !InCards.empty(); ++Round)
{
Deck.emplace(InCards.back(), 1); InCards.pop_back();
Deck.emplace(InCards.back(), 1); InCards.pop_back();

bool FindCombination = false;
for(const auto& [Card, Coin] : Deck)
{
int TargetCard = RequiredSum - Card;
if(Card == TargetCard)
{
continue;
}

int TargetCoin;
if(Deck.count({TargetCard, 0}))
{
TargetCoin = 0;
}
else if(Deck.count({TargetCard, 1}))
{
TargetCoin = 1;
}
else
{
continue;
}

if(Coin + TargetCoin <= InCoin)
{
InCoin -= (Coin + TargetCoin);
Deck.erase({Card, Coin});
Deck.erase({TargetCard, TargetCoin});
FindCombination = true;
break;
}
}

if(false == FindCombination)
{
break;
}
}

return Round;
}
33 changes: 33 additions & 0 deletions 9-kyo-hwang/Greedy/λ””νŽœμŠ€ κ²Œμž„.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#include <string>
#include <vector>
#include <queue>

using namespace std;

int solution(int N, int K, vector<int> InEnemies)
{
priority_queue<int> NumofEnemiesBlocked;
int Round = 0;

for(int Enemy : InEnemies)
{
N -= Enemy;
NumofEnemiesBlocked.emplace(Enemy);

if(N < 0)
{
if(K == 0)
{
break;
}

N += NumofEnemiesBlocked.top();
NumofEnemiesBlocked.pop();
K--;
}

Round++;
}

return Round;
}
8 changes: 7 additions & 1 deletion 9-kyo-hwang/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,10 @@
| 61μ°¨μ‹œ | 2024.8.08 | Implementation | [ν…Œμ΄λΈ” ν•΄μ‹œ ν•¨μˆ˜](https://school.programmers.co.kr/learn/courses/30/lessons/147354) | [#214](https://github.com/AlgoLeadMe/AlgoLeadMe-3/pull/214) |
| 62μ°¨μ‹œ | 2024.8.12 | Graph Traversal | [무인도 μ—¬ν–‰](https://school.programmers.co.kr/learn/courses/30/lessons/154540) | [#217](https://github.com/AlgoLeadMe/AlgoLeadMe-3/pull/217) |
| 63μ°¨μ‹œ | 2024.9.3 | Binary Search | [ꡬ간 λ‚˜λˆ„κΈ°2](https://www.acmicpc.net/problem/13397) | [#218](https://github.com/AlgoLeadMe/AlgoLeadMe-3/pull/218) |
| 64μ°¨μ‹œ | 2024.9.8 | Binary Search | [징검닀리](https://school.programmers.co.kr/learn/courses/30/lessons/43236) | [#221](https://github.com/AlgoLeadMe/AlgoLeadMe-3/pull/221) |
| 64μ°¨μ‹œ | 2024.9.8 | Binary Search | [징검닀리](https://school.programmers.co.kr/learn/courses/30/lessons/43236) | [#221](https://github.com/AlgoLeadMe/AlgoLeadMe-3/pull/221) |
| 65μ°¨μ‹œ | 2024.9.11 | Greedy | [λ””νŽœμŠ€ κ²Œμž„](https://school.programmers.co.kr/learn/courses/30/lessons/142085) | [#224](https://github.com/AlgoLeadMe/AlgoLeadMe-3/pull/224) |
| 66μ°¨μ‹œ | 2024.9.14 | Sliding Window | [할인 행사](https://school.programmers.co.kr/learn/courses/30/lessons/131127) | [#225](https://github.com/AlgoLeadMe/AlgoLeadMe-3/pull/225) |
| 67μ°¨μ‹œ | 2024.9.23 | Graph Traversal | [퍼즐 쑰각 μ±„μš°κΈ°](https://school.programmers.co.kr/learn/courses/30/lessons/84021) | [#228](https://github.com/AlgoLeadMe/AlgoLeadMe-3/pull/228) |
| 68μ°¨μ‹œ | 2024.10.1 | Greedy | [2024 KAKAO WINTER INTERNSHIP n + 1 μΉ΄λ“œ κ²Œμž„](https://school.programmers.co.kr/learn/courses/30/lessons/258707) | [#230](https://github.com/AlgoLeadMe/AlgoLeadMe-3/pull/230) |
| 69μ°¨μ‹œ | 2024.10.8 | Graph Traversal | [2022 KAKAO BLIND RECRUITMENT μ‚¬λΌμ§€λŠ” 발판](https://school.programmers.co.kr/learn/courses/30/lessons/92345) | [#232](https://github.com/AlgoLeadMe/AlgoLeadMe-3/pull/232) |
| 70μ°¨μ‹œ | 2024.11.2 | Graph Traversal | [2021 KAKAO BLIND RECRUITMENT 맀좜 ν•˜λ½ μ΅œμ†Œν™”](https://school.programmers.co.kr/learn/courses/30/lessons/72416) | [#233](https://github.com/AlgoLeadMe/AlgoLeadMe-3/pull/233) |
35 changes: 35 additions & 0 deletions 9-kyo-hwang/Sliding Window/할인 행사.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#include <string>
#include <vector>
#include <unordered_map>

using namespace std;

int solution(vector<string> InWants, vector<int> InNumbers, vector<string> InDiscounts)
{
unordered_map<string, int> NumberbyWants;
for(int i = 0; i < 9; ++i)
{
NumberbyWants[InDiscounts[i]]++;
}

int Answer = 0;
for(int i = 9; i < InDiscounts.size(); ++i)
{
NumberbyWants[InDiscounts[i]]++;
bool Flag = true;

for(int j = 0; j < InWants.size(); ++j)
{
if(NumberbyWants[InWants[j]] != InNumbers[j])
{
Flag = false;
break;
}
}

Answer += Flag;
NumberbyWants[InDiscounts[i - 9]]--;
}

return Answer;
}
Loading