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

25-InSange #87

Merged
merged 5 commits into from
Aug 25, 2024
Merged
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
106 changes: 106 additions & 0 deletions InSange/BFS/1068.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
#include <iostream>
#include <vector>
#include <queue>

using namespace std;

struct Node
{
Node()
{
parent = nullptr;
leafNode = true;
}

vector<int> childs;
Node* parent;
bool leafNode;
};

vector<Node*> nodes;
int N, ans = 0, rIndex;

void NodeUpdate(Node* curNode)
{
for (auto child : curNode->childs)
{
if (nodes[child] != nullptr)
{
curNode->leafNode = false;
return;
}
}
curNode->leafNode = true;
}

void Solve()
{
cin >> N;

for (int i = 0; i < N; i++)
{
Node* node = new Node();

nodes.push_back(node);
}
int root_index = 0;

for(int i = 0; i < N; i++)
{
int p;
cin >> p;

if (p == -1)
{
root_index = i;
continue;
}
nodes[i]->parent = nodes[p];
nodes[i]->parent->childs.push_back(i);
if (nodes[i]->parent)
{
NodeUpdate(nodes[i]->parent);
}
}

cin >> rIndex;
if (rIndex == root_index) // ���� �Ȱ� ��Ʈ���
{
cout << ans << "\n";
return;
}
Node* parentNode = nodes[rIndex]->parent;
delete nodes[rIndex];
nodes[rIndex] = nullptr;
NodeUpdate(parentNode);

queue<Node*> q;
q.push(nodes[root_index]);

while (!q.empty())
{
Node* cur = q.front();
q.pop();

if (cur->leafNode) ans++;
for (auto index : cur->childs)
{
if (nodes[index] != nullptr)
{
q.push(nodes[index]);
}
}
}

cout << ans;
}

int main()
{
cin.tie(nullptr);
ios::sync_with_stdio(false);

Solve();

return 0;
}
66 changes: 66 additions & 0 deletions InSange/BFS/310_Minimum Height Trees.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
#include <vector>
#include <map>
#include <queue>

using namespace std;

class Solution {
public:
vector<int> findMinHeightTrees(int n, vector<vector<int>>& edges) {
map<int, vector<int>> m;
vector<int> ans;
vector<bool> check(n, false);
int* degree = new int[n] {0};

for (vector<int> node : edges)
{
m[node[0]].push_back(node[1]);
m[node[1]].push_back(node[0]);
degree[node[0]]++;
degree[node[1]]++;
}
int current_n = n;

queue<int> q;
if (current_n > 2)
{
for (int i = 0; i < n; i++)
{
if (degree[i] == 1 && check[i] == false)
{
check[i] = true;
q.push(i);
current_n--;
}
}
}
while (current_n > 2 && !q.empty())
{
int size = q.size();

for (int j = 0; j < size; j++)
{
int remove_n = q.front();
q.pop();

for (auto node : m[remove_n])
{
degree[node]--;
if (degree[node] == 1)
{
q.push(node);
check[node] = true;
current_n--;
}
}
}
}

for (int i = 0; i < n; i++)
{
if (check[i] == false) ans.push_back(i);
}

return ans;
}
};
28 changes: 28 additions & 0 deletions InSange/DP/1105_FillingBookcaseShelves.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#include <vector>

using namespace std;

class Solution {
public:
int minHeightShelves(vector<vector<int>>& books, int shelfWidth) {
int arrSize = books.size();
vector<int> heightArr(arrSize + 1, 0);

for (int i = 1; i <= arrSize; i++)
{
int width = books[i - 1][0];
int height = books[i - 1][1];

heightArr[i] = heightArr[i - 1] + height; // check Next Floor
for (int j = i - 1; j > 0; j--)
{
if (width + books[j - 1][0] > shelfWidth) break;
width += books[j - 1][0]; // check the same Floor
height = max(height, books[j - 1][1]); // same Floor height compare with before book height
heightArr[i] = min(heightArr[i], heightArr[j - 1] + height); // where make min
}
}

return heightArr[arrSize];
}
};
5 changes: 5 additions & 0 deletions InSange/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
| 19차시 | 2024.07.13 | 스택 | [Crawler Log Folder](https://leetcode.com/problems/reverse-substrings-between-each-pair-of-parentheses/) | [#19](https://github.com/AlgoLeadMe/AlgoLeadMe-8/pull/72)]
| 20차시 | 2024.07.17 | 스택 | [Robot Collisions](https://leetcode.com/problems/robot-collisions/) | [#20](https://github.com/AlgoLeadMe/AlgoLeadMe-8/pull/74)]
| 21차시 | 2024.07.21 | 그리디 | [Find Valid Matrix Given Row and Column Sums](https://leetcode.com/problems/find-valid-matrix-given-row-and-column-sums/) | [#21](https://github.com/AlgoLeadMe/AlgoLeadMe-8/pull/75)]
| 22차시 | 2024.07.31 | DP | [Filling Bookcase Shelves](https://leetcode.com/problems/filling-bookcase-shelves/) | [#22](https://github.com/AlgoLeadMe/AlgoLeadMe-8/pull/81)]
| 23차시 | 2024.08.03 | 슬라이딩 윈도우 | [Minimum Swaps to Group All 1's Together 2](https://leetcode.com/problems/minimum-swaps-to-group-all-1s-together-ii/) | [#23](https://github.com/AlgoLeadMe/AlgoLeadMe-8/pull/82)]
| 24차시 | 2024.08.04 | BFS | [트리](https://www.acmicpc.net/problem/1068) | [#24](https://github.com/AlgoLeadMe/AlgoLeadMe-8/pull/83)]
| 25차시 | 2024.08.10 | BFS | [Minimum Height Trees](https://leetcode.com/problems/minimum-height-trees/) | [#25](https://github.com/AlgoLeadMe/AlgoLeadMe-8/pull/87)]
| 26차시 | 2024.08.11 | 수학 | [Magic Squares In Grid](https://leetcode.com/problems/magic-squares-in-grid/) | [#26](https://github.com/AlgoLeadMe/AlgoLeadMe-8/pull/89)]
---

https://leetcode.com/problems/robot-collisions/
55 changes: 55 additions & 0 deletions InSange/수학/840_Magic Squares In Grid.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
#include <vector>

using namespace std;

class Solution {
public:
bool Check(int r, int c, vector<vector<int>>& grid)
{
vector<bool> isCheck(10, false);

for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
int num = grid[r + i][c + j];
if (num < 1 || num > 9) return false;
if (isCheck[num]) return false;
isCheck[num] = true;
}
}

int standard_num = grid[r][c] + grid[r + 1][c + 1] + grid[r + 2][c + 2];
if (standard_num != grid[r][c + 2] + grid[r + 1][c + 1] + grid[r + 2][c]) return false;

for (int i = 0; i < 3; i++)
{
if (standard_num != (grid[r + i][c] + grid[r + i][c + 1] + grid[r + i][c + 2])) return false;
}

for (int i = 0; i < 3; i++)
{
if (standard_num != (grid[r][c + i] + grid[r + 1][c + i] + grid[r + 2][c + i])) return false;
}

return true;
}

int numMagicSquaresInside(vector<vector<int>>& grid) {
int col = grid[0].size(), row = grid.size();

if (col < 3 || row < 3) return 0;

int ans = 0;

for (int i = 0; i < row - 2; i++)
{
for (int j = 0; j < col - 2; j++)
{
if (Check(i, j, grid)) ans++;
}
}

return ans;
}
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#include <vector>

using namespace std;

class Solution {
public:
int minSwaps(vector<int>& nums) {
int zeroCnt = minSwapsHelper(nums, 0);
int oneCnt = minSwapsHelper(nums, 1);

return min(zeroCnt, oneCnt);
}

int minSwapsHelper(vector<int>& data, int val) {
int numSize = data.size();
int totalCnt = 0;

for (int num : data)
{
if (num == val) totalCnt++;
}

if (totalCnt == 0 || totalCnt == numSize) return 0;

int start = 0, end = 0;
int maxValCnt = 0, curValCnt = 0;

while (end < totalCnt) {
if (data[end++] == val) curValCnt++;
}
maxValCnt = max(maxValCnt, curValCnt);

while (end < numSize)
{
if (data[start++] == val) curValCnt--;
if (data[end++] == val) curValCnt++;
maxValCnt = max(maxValCnt, curValCnt);
}

return totalCnt - maxValCnt;
}
};