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

12-YIM2UL2ET #39

Merged
merged 4 commits into from
Apr 2, 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
2 changes: 2 additions & 0 deletions YIM2UL2ET/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@
| 08์ฐจ์‹œ | 2024.03.04 | ์žฌ๊ท€ | [BOJ 10994](https://www.acmicpc.net/problem/10994) | [BOJ 10994 ํ’€์ด](https://github.com/AlgoLeadMe/AlgoLeadMe-7/pull/27) |
| 09์ฐจ์‹œ | 2024.03.07 | ์ž„์˜ ์ •๋ฐ€๋„ / ํฐ ์ˆ˜ ์—ฐ์‚ฐ && ์žฌ๊ท€ | [BOJ 1914](https://www.acmicpc.net/problem/1914) | [BOJ 1914 ํ’€์ด](https://github.com/AlgoLeadMe/AlgoLeadMe-7/pull/29) |
| 10์ฐจ์‹œ | 2024.03.10 | ์Šคํƒ | [BOJ 1406](https://www.acmicpc.net/problem/1406) | [BOJ 1406 ํ’€์ด](https://github.com/AlgoLeadMe/AlgoLeadMe-7/pull/31) |
| 11์ฐจ์‹œ | 2024.03.18 | ์Šคํƒ | [BOJ 1918](https://www.acmicpc.net/problem/1918) | [BOJ 1918 ํ’€์ด](https://github.com/AlgoLeadMe/AlgoLeadMe-7/pull/36) |
| 12์ฐจ์‹œ | 2024.03.28 | ๋น„ํŠธ๋งˆ์Šคํ‚น | [BOJ 11723](https://www.acmicpc.net/problem/11723) | [BOJ 11723 ํ’€์ด](https://github.com/AlgoLeadMe/AlgoLeadMe-7/pull/39) |
---
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
#include <iostream>

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

int n, k, bits = 0;
std::string command;

std::cin >> n;
for (int i = 0; i < n; i++) {
std::cin >> command;
if (command == "add") {
std::cin >> k;
bits |= (1<<k);
}
else if (command == "remove") {
std::cin >> k;
bits &= ~(1<<k);
}
else if (command == "check") {
std::cin >> k;
if (bits & (1<<k)) std::cout << "1\n";
else std::cout << "0\n";
}
else if (command == "toggle") {
std::cin >> k;
bits ^= (1<<k);
}
else if (command == "all") bits = (1<<21)-1;
else bits = 0;
}
return 0;
}
43 changes: 43 additions & 0 deletions YIM2UL2ET/์Šคํƒ/11์ฐจ์‹œ - BOJ 1918.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
#include <iostream>
#include <stack>

int main(void)
{
char ch;
std::stack <char> stk;
std::string res;

ch = getchar();
while (ch != '\n') {
if (ch == '+' || ch == '-') {
while(!stk.empty() && stk.top() != '(') {
res.push_back(stk.top());
stk.pop();
}
stk.push(ch);
}
else if (ch == '*' || ch == '/') {
if (!stk.empty() && (stk.top() == '*' || stk.top() == '/')) {
res.push_back(stk.top());
stk.pop();
}
stk.push(ch);
}
else if (ch == ')') {
while (!stk.empty() && stk.top() != '(') {
res.push_back(stk.top());
stk.pop();
}
if (!stk.empty()) stk.pop();
}
else if (ch == '(') stk.push(ch);
else res.push_back(ch);
ch = getchar();
}
while (!stk.empty()) {
res.push_back(stk.top());
stk.pop();
}
std::cout << res;
return 0;
}