-
Notifications
You must be signed in to change notification settings - Fork 0
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
3-g0rnn #9
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์ ๋ ์ฒ์ ๋ณด๊ณ ๋ ํ๋ํ๋ ํ์ฑํด์ ๊ฒฝ์ฐ์์๋ฅผ ๋ฐ์ง๋ ๋ฌธ์ ์ธ์ง ์์์ต๋๋ค.
๊ทผ๋ฐ ๊ท ํธ๋ ์ค๋ช
์ ๋ณด๊ณ , ์กฐ๊ธ๋ ์๊ฐํด๋ณด๋๊น
๊ธฐํธ๊ฐ + - ๋ฐ์ ์๋ ์กฐ๊ฑด์ ๊ดํธ๋ฅผ ๋ง์๋๋ก ์น ์ ์๋ค๋ฉด - ๊ธฐ์ค์ผ๋ก ๋ฌถ์ ๋ฌถ์ ์ฒ๋ฆฌํด์ ์ฐ์ฐํ๋ค๋ฉด, ์ต์ ํฉ์ด ๊ตฌํด์ง๋ค๋๊ฒ ์ดํด ๋์ต๋๋ค.
int minSum = 0;
string num;
bool minusFlag = false;
for (int i = 0; i <= str.size(); i++) {
if (str[i] == '+' || str[i] == '-' || i == str.size()) {
if (minusFlag) minSum -= stoi(num);
else minSum += stoi(num);
num = "";
}
else num += str[i];
if (str[i] == '-') minusFlag = true;
}
cout << minSum;
์
๋ ฅ๋ฐ์ ๋ฌธ์์ด์ ์ํํ๋ฉฐ
๊ธฐํธ๊ฐ ๋์ฌ๋ ๊น์ง๋ ์๋ฅผ ์ ์ํ ํด๋์๋ค๊ฐ
๊ธฐํธ๊ฐ ๋์ค๋ฉด minusFlag์ ๋ฐ๋ผ + -ํ๋ ๋ฐฉ์์ ์ฝ๋์
๋๋ค.
ํต์ฌ์ - ๊ฐ ํ๋ฒ ๋์ค๋ฉด ๋ค์๋ ๋ชจ๋ ๊ดํธ๋ฅผ ํ์ฉํด์ - ์ฒ๋ผ ๊ณ์ฐํ ์ ์๋ค๋ ๊ฒ์ด๋ผ๊ณ ์๊ฐํฉ๋๋ค.
g0rnn/๋ฌธ์์ด/3-g0rnn.java
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์ค๋ช
ํ์ ๋๋ก - ๊ธฐ์ค์ผ๋ก ๋ฌธ์์ด์ ์๋ฅด๊ณ
์๋ผ์ง ๋ฉ์ด๋ฆฌ๋ผ์ง ํฉํด์ - ๋ฅผ ํฌ๊ฒ ํ ์ ์๋ ๋ฐฉ์์ด๊ตฐ์ ์๋ดค์ต๋๋ค.
์๋ฐ์ฝ๋๋ก ๋ณด๋ ํ๋์ ์๋ค์ด์ค๊ธด ํ๋๋ฐ ๋๋ถ์ ์๋ฐ ๊ณต๋ถํ๋ค๊ณ ์๊ฐํ๊ฒ ์ต๋๋ค.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
๋ฌธ์์ด์ tokenizeํ๋๊ฒ ์๋๋ผ ํ๋ฒ์ ๋๋ฉด์ ๋ฌธ์ ๋ฅผ ํธ์ จ๊ตฐ์! ์ด ๋ฐฉ์์ด ์ฝ๋ ์๋๋ ์ ์ผ ๋น ๋ฅผ ๊ฑฐ ๊ฐ๋ค์ ใทใท
ํ์์๋ ์์ฃผ ์ฐ๋ split์ ์ฌ์ฉํ๋ฉด ์ฝ๊ฒ ํ ์ ์๋ ๋ฌธ์ ๋ผ๊ณ ์๊ฐ์ด ๋ค์์ต๋๋ค. expression = input()
part = expression.split('-')
result = sum(map(int, part[0].split('+')))
for i in range(1, len(part)):
result -= sum(map(int, part[i].split('+')))
print(f'{result}') sum, map, split ๋ง์ด ์ฐ๋๋ฐ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์ฒ์์ -๊ฐ ๋์ค๋ฉด ๊ดํธ๋ฅผ ์ด๊ณ ๋ค์ ๋ง์ด๋์ค๊ฐ ๋์ค๋ฉด ๊ดํธ๋ฅผ ๋ซ๊ณ ๋ค์ ์ฌ๋๊ฑธ ๋ฐ๋ณตํ๋ค๊ฐ ๋ง์ง๋ง๊น์ง ๊ดํธ๊ฐ ๋ซํ์ง ์์ผ๋ฉด ๊ดํธ๋ฅผ ๋ซ์์ฃผ๋ ๋ฐฉ์์ผ๋ก ๋ก์ง์ ๊ตฌํํ๋ ค ํ๋๋ฐ ๋ฐ๋ก๊ฐ ๋๋ฌด ๋ง์ด ๋์ ์ด๋ฐฉ์์ ํฌ๊ธฐํ์ต๋๋ค.
์ดํ ์๊ฐํด๋ณด๋ค ์ฐํ ์ฝ ํ๋ฆฌ์ฝ์ค 1์ฃผ์ฐจ๋ ์ฌ์ฉํ๋ split์ ์ฌ์ฉํด์ผ๊ฒ ๋ค ์ถ์ด์ -๊ธฐ์ค์ผ๋ก ์คํ๋ฆฟ์ผ๋ก ๋๋๋ค ๊ฐ ํํธ๋ณ๋ก ๋ํด์ฃผ๊ณ ๋ง์ด๋์คํํธ ์ฆ ์ง์๋ฒ ํํธ๋ ๋นผ์ฃผ๋ ๋ฐฉ์์ผ๋ก ์ฝ๋๋ฅผ ๊ตฌํํ์ต๋๋ค.
ํจ์ฌ ๊ฐ๋จํด์ง๊ณ ์์ธ๋ ์์ต๋๋ค. ์คํ๋ฆฟ์ ๊ฐ์ ์ ๋๋ผ๊ฒ ํด์ฃผ๋ ๋ฌธ์ ์์ต๋๋ค.
# ์
๋ ฅ๋ฐ๊ธฐ
expression = input()
# '-'๋ฅผ ๊ธฐ์ค์ผ๋ก ์์์ ๋ถ๋ฆฌ
parts = expression.split('-')
# ์ฒซ ๋ฒ์งธ ๋ถ๋ถ์ ์์๋ก ๊ณ์ฐ
result = sum(map(int, parts[0].split('+')))
# ๋ ๋ฒ์งธ ๋ถ๋ถ๋ถํฐ๋ ๋ชจ๋ ์์๋ก ๊ณ์ฐํ์ฌ ๋นผ์ค
for part in parts[1:]:
result -= sum(map(int, part.split('+')))
# ๊ฒฐ๊ณผ ์ถ๋ ฅ
print(result)
๐ ๋ฌธ์ ๋งํฌ
[๋ฌธ์์ด] ์์ด๋ฒ๋ฆฐ ๊ดํธ : https://www.acmicpc.net/problem/1541
โ๏ธ ์์๋ ์๊ฐ
1h +
โจ ์๋ ์ฝ๋
์ฒ์์ ์ด๋ฌธ์ ๋ฅผ ๋ณด๊ณ ๊ดํธ๋ฅผ ํ๋๋ง ์ฌ์ฉํ์ฌ ์ต์๊ฐ์ ๋ง๋๋์ค ์๊ณ ์ด์ ์ ๊ฐ๋๋์ด ํผ ์ฐ์ํฉ๊ณผ ๊ฐ์ ๋ฌธ์ ๋ผ ์๊ฐํด์ ์ข ํด๋ฉจ์ต๋๋ค.. ์ฌ๋ฌ๋ถ๋ค์ ๋ฌธ์ ์ฐจ๊ทผ์ฐจ๊ทผ ์ฝ์ด๋ณด์๊ธธ ๋ฐ๋๋๋ค
(๊ทผ๋ฐ ๋ฌธ์ ๋ฅผ ์ฐพ์๋ณด๋ ์ด์ฐจํผ ์ค๋ ๊ฑธ๋ฆด ๋ฌธ์ ์๋๊ฑฐ ๊ฐ๊ธฐ๋..)๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
Java์๋ ๋ฌธ์์ด์ ๋๋๋ ๋ฐฉ๋ฒ์ด 2๊ฐ์ง์ด๋ค.
1. split
2. StringTokenizer