-
Notifications
You must be signed in to change notification settings - Fork 2
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
29-yuna83 #136
29-yuna83 #136
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.
์ ์ ๋ ์ด๊ฑฐ ๋จ์ ํ ๋ฌธ์ ์ธ ์ค ์์๋๋ฐ
์๊ฐํด๋ณด๋ ์ฌ๋ผ์ด๋ฉ ์๋์ฐ๊ฐ ๋ ์ ํฉํ๊ฒ ๋ค์...
์์ฐจ์ฐจ.... ์ฌ๋ผ์ด๋ฉ ์๋์ฐ ํ๋๊น ๋คํธ์ํฌ ์๊ฐ์ ๋ฒํผ ๊ด๋ฆฌํ ๋ ์ฌ์ฉํ๋๊ฑฐ ์๊ฐ๋๋ค์...
from collections import deque
total_blog_day, duration = map(int,input().split())
_max = 0
max_duration = 0
deq = deque()
now = 0
for today in map(int,input().split()):
if len(deq) >= duration:
top = deq.popleft()
now -= top
deq.append(today)
now += today
elif len(deq) < duration:
now += today
deq.append(today)
if _max < now:
_max = now
max_duration = 1
elif _max == now:
max_duration += 1
if _max == 0: print("SAD")
else:
print(_max)
print(max_duration)
๋ธ๋ก๊ทธ ๋ฐฉ๋ฌธ ์ ๋์ ํฉ์ ๊ณ์ฐํ ๋ค ์ฌ๋ผ์ด๋ฉ ์๋์ฐ๋ก X์ผ ์น์ ์ต๋๊ฐ์ ๊ตฌํ๋ ์์ผ๋ก ํ์ด๋ดค์ต๋๋ค. ๋์ ๋๋ฆฌ๋ก ๋ฐฉ๋ฌธ์์๋ฅผ ๊ธฐ๋กํด๋๊ณ ๋์ค์ ์ ๋ ฌํด์ ํธ๋ ์์ ์ฝ๋์ธ๋ฐ ๋ค ํ๊ณ ๋ณด๋ ์ ๋ ฌ์ ์์ด๋ ๋๊ฒ ๋ค์ N, X = map(int, stdin.readline().split())
visits = list(map(int, stdin.readline().split()))
for i in range(1, N):
visits[i] += visits[i - 1]
max_visits = {}
for right in range(X - 1, N):
if right == X - 1:
if visits[right] > 0:
max_visits[visits[right]] = 1
else:
count = visits[right] - visits[right - X]
if count > 0:
max_visits[count] = max_visits.get(count, 0) + 1
if not max_visits:
print('SAD')
else:
visit_items = list(max_visits.items())
visit_items.sort(key=lambda x: x[0])
print(visit_items[-1][0])
print(visit_items[-1][1]) |
Code#include <iostream>
#include <vector>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int N, X;
cin >> N >> X;
vector<int> visitors(N);
for (int &visitor: visitors) {
cin >> visitor;
}
int cur = 0;
for (int i = 0; i < X; i++) {
cur += visitors[i];
}
int lo = 0;
int hi = X;
int maxVisitors = 0;
int period = -1;
while (true) {
if (cur == maxVisitors) {
period++;
} else if (cur > maxVisitors) {
maxVisitors = cur;
period = 1;
}
if (hi >= N) break;
cur -= visitors[lo];
cur += visitors[hi];
lo++;
hi++;
}
if (maxVisitors == 0) {
cout << "SAD";
return 0;
}
cout << maxVisitors << '\n' << period;
return 0;
} ๋ฌธ์ ์์ฒด๋ ๊ฐ๋จํ์ง๋ง, off by one ์ค๋ฅ๊ฐ ์๊ธธ๊น๋ด ์ฌ๋ฌ๊ฐ์ง ๊ณ ๋ฏผ์ ํ๋ฉฐ ๋ฌธ์ ๋ฅผ ํ์์ด์. ๊ฒฐ๊ตญ [lo, hi) ์ฒ๋ผ ๋ฐํ๊ตฌ๊ฐ์ ์ธ์์ ํ์๋๋ฐ, ํ์คํ ๊ธฐ์ค์ด ๋ช ํํด์ง๋๊น ๊น๋ํ๋ค์. ์ฐธ๊ณ ์๋ฃ : https://www.cs.utexas.edu/users/EWD/transcriptions/EWD08xx/EWD831.html |
๐ ๋ฌธ์ ๋งํฌ
๋ธ๋ก๊ทธ
โ๏ธ ์์๋ ์๊ฐ
30๋ถ
โจ ์๋ ์ฝ๋
๋ธ๋ก๊ทธ๋ฅผ ์์ํ๊ณ ์ง๋ ์ผ์
n
x
์ผ ๋์ ๊ฐ์ฅ ๋ง์ด ๋ค์ด์จ ๋ฐฉ๋ฌธ์ ์์ ๊ทธ ๊ธฐ๊ฐ์ด ๋ช ๊ฐ๊ฐ ์๋ ์ง ์ถ๋ ฅ!ex)
n=5, x=2
1 4 2 5 1
์ด๋ฉด
2์ผ๋์ ๊ฐ์ฅ ๋ง์ด ๋ค์ด์จ ์ฌ๋์ ์๋ 2+5= 7๋ช ,
7๋ช ์ด ๋ค์ด์จ ๊ธฐ๊ฐ์ 3~4์ผ ๋ฐ์ ์์ผ๋ฏ๋ก 1๋ฒ์ผ๋ก
7
1
์ ์ถ๋ ฅํ๋ค!
์ฌ๋ผ์ด๋ฉ ์๋์ฐ ๐ช
: ๊ณ ์ ์ฌ์ด์ฆ์ ์๋์ฐ๊ฐ ์ด๋ํ๋ฉด์ ์๋์ฐ ๋ด์ ์๋ ๋ฐ์ดํฐ๋ฅผ ์ด์ฉํด ๋ฌธ์ ๋ฅผ ํ์ดํ๋ ์๊ณ ๋ฆฌ์ฆ
๋ฐฐ์ด์ด๋ ๋ฆฌ์คํธ์ ์์์ ์ผ์ ๋ฒ์์ ๊ฐ์ ๋น๊ตํ ๋ ์ฌ์ฉํ๋ฉด ์ ์ฉํ๋ค!
์ด ๋ฌธ์ ๋ ์ฃผ์ด์ง
n
์ผ์ ๋ฐฉ๋ฌธ์์๋ฅผ์์๋๋ก
x
์ผ ๋งํผ์ผ๋ก ์๋์ฐ๋ฅผ ์ค์ ํด๋์ฌ ์ ์๋ ๋ชจ๋ ์๋์ฐ ์ค ์ต๋๊ฐ๊ณผ, ๊ทธ ์ต๋๊ฐ์ด ๋ช ๋ฒ ๋์ค๋์ง ๊ตฌํ๋ฉด ๋๋ค!
1. ์ฒ์ ์๋์ฐ๋ฅผ ์ต๋๊ฐ์ผ๋ก ์ค์ ํ๋ค.
data
: ์์ํ 1์ผ๋ถํฐ n์ผ๊น์ง ํ๋ฃจ ๋ฐฉ๋ฌธ์ ์ ๋ฆฌ์คํธex)
n=5, x=2์ด๋ฉด (1 4 2 5 1)
value = 1+4 = 5
2. ์๋์ฐ๋ฅผ ์ค๋ฅธ์ชฝ์ผ๋ก ํ์นธ์ฉ ์ด๋ํ๋ฉด์ ์๋์ฐ๋ฅผ ๊ฐฑ์ ํ๋ค.
์๋์ฐ๋ ํ์นธ์ฉ ์ด๋ํ๋ฏ๋ก ๋งค๋ฒ ์๋กญ๊ฒ ๊ณ์ฐํ๋๊ฒ๋ณด๋ค
์ด์ ์๋์ฐ์ ๊ฐ
vaiue
์์์๋ก์ด ๊ฐ์ ๋ํ๊ณ , ์ด์ ์์๋ ๋นผ๋ ๊ฒ ํจ์จ์ ์ด๋ค!
ex)
n=5, x=2์ด๋ฉด (1 4 2 5 1)
value = 5+2-1= 6
3. ์๋ก์ด ์๋์ฐ๊ฐ ์๋ ์๋์ฐ๋ณด๋ค ํฌ๋ฉด ์ต๋๊ฐ์ผ๋ก ๊ฐฑ์ ํ๋ค.
ex)
ํ์ฌ
value
=6,max_value
=5์ด๋ฏ๋กmax_value
๋ฅผ 6์ผ๋ก ๊ฐฑ์ ํ๋ค!4. ์๋ก์ด ์๋์ฐ๊ฐ ์๋ ์๋์ฐ์ ๋์ผํ๋ฉด ๊ฐ์๋ฅผ ๊ฐฑ์ ํ๋ค.
๋ชจ๋ ์๋์ฐ๋ฅผ ๋น๊ตํ ํ ๊ฐฑ์ ๋
max_value
์max_cnt
๋ฅผ ์ถ๋ ฅํด์ฃผ๋ฉด ๋๋ค.์ต๋ ๋ฐฉ๋ฌธ์์๊ฐ 0๋ช ์ธ ๊ฒฝ์ฐ SAD๊ฐ ์ถ๋ ฅ๋๋๋ก ์กฐ๊ฑด๋ฌธ์ ์ค์ ํด์ฃผ๋ ๊ฒ๋ ์์ด์ ์๋๋ค!
์ ์ฒด์ฝ๋
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์ฌ๋ผ์ด๋ฉ ์๋์ฐ๋ ์ด๋ฆ์ด ๋ฏ์ค์ด์ ์ด๋ ต๊ฒ ๋๊ปด์ก๋๋ฐ
๋ฒ์๊ฐ ์ ํด์ง ํฉ๋ค์ ๋น๊ต๋ฅผ ํ ๋ ์์ฒญ ํธ๋ฆฌํ๋ค์!!
๋ค์ ๋ฌธ์ ๋ ์ฌํ๋ฒ์ ์ผ๋ก ํ์ด๋ณด๊ฒ ์ต๋๋ค!!
<๋์๋ฐ์ ์ถ์ฒ>
์ฌ๋ผ์ด๋ฉ ์๋์ฐ ๊ฐ๋ & ์ฝ๋
https://ji-musclecode.tistory.com/37