-
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
10-kangrae-jo #37
10-kangrae-jo #37
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.
์ ๋ ์ด ๋ฌธ์ ์ฒ์๋ณด๊ณ 2์ฐจ์ ๋ฐฐ์ด์ ๋ง๋ค์ด์ผํ๋ ์๊ฐํ์ต๋๋ค. i์ j๋ฅผ ์ ๋ ฅ๋ฐ๊ณ ๋จผ์ ๊ณ์ฐํ ํ ๊ทธ ๊ฐ์ 2์ฐจ์ ๋ฐฐ์ด [i][j] ๋ฒ์งธ์ ์ ์ฅํ๋ ค๊ณ ํ์์ต๋๋ค. ๊ทผ๋ฐ ์ด๊ฒ ๋๋.? ๋ฉ๋ชจ๋ฆฌ๋ ๋ ๊ฑฐ ๊ฐ์๋ฐ ๊ฐ๋ ์ฝ๋๋ ์๋ง 2์ฐจ์์ผ๋ก ํ๊ฒ ์ง? ํ๋ฉด์ pr์ ๋ณด๋๋ฐ ์์ ๊ฐ๋จํ๊ฒ ๊ตฌํ๋์๋๊ตฐ์.... ใทใท
๊ทธ๋์ ์ฝ๋๋ ๊ฑฐ์ ๊ฐ์ต๋๋ค. ์ ๋ ฅ๋ฐ๋ ๋ถ๋ถ์ด ์์ฃผ ์ฝ๊ฐ ๋ค๋ฅธ๊ฒ ๋นผ๊ณ ๋ ๋ค ๋๊ฐ๋ค์
code
for (int i=1; i<=n; i++) {
cin >> k;
arr[i] = k + arr[i-1];
}
ios_base::sync_with_stdio(0); | ||
cout.tie(0); | ||
cin.tie(0); |
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.
์ฌ๊ธฐ์ 0์ ๋ฃ์ด๋ ์๋์ด ๋๋๊ตฐ์
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.
์ ๋ ์ด์ข๊ฒ ์ ๋ต ํ์ด๊ฐ ๋น ๋ฅด๊ฒ ๋ ์ฌ๋๋ ๊ฒ ๊ฐ๋ค์
๊ทธ๋ฆฌ๊ณ ์ ๋ ์ ๊ธฐ์ NULL๋ ์ฐ๊ณ 0๋ ์ฐ๊ณ ๊ตฌ๋ถ์์ด ๊ทธ๋ฅ ์ ๊ฐ๋๋๋ก ์ฐ๋๋ฐ,
c์์ NULL์ 0์ผ๋ก ์ปดํ์ผ ๋๋ ๊ฑธ๋ก ์๊ณ ์์ด์(๋๋ ์ ์ 0์์คํค๊ฐ NULL์ด๋ผ์ ๊ทธ๋ด๊น...์?)
์ด์ฉ๋ ๊ทธ๋์ ์ ์๋ํ๋๋ด์ ใ
ใ
ใ
ใ
์ ๋ ์ฐ์ ํ์ด๋ดค๋๋ฐ ์๊ฐ ์ด๊ณผ๊ฐ ๋ ์ code import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int m = sc.nextInt();
int[] nums = new int[n+1];
int[] result = new int[m];
nums[0] = 0;
for(int i = 1; i <= n; i++) {
nums[i] = nums[i-1] + sc.nextInt();
}
for(int i = 0; i < m; i++) {
int s = sc.nextInt();
int e = sc.nextInt();
result[i] = nums[e] - nums[s-1];
}
for(int i = 0; i < m; i++) {
System.out.println(result[i]);
}
}
} |
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.
์๋ฌด์๊ฐ์์ด
N, M = map(int, input().split())
sum = 0
num = list(map(int, input().split()))
for i in range(M):
start, end = map(int, input().split())
for j in range(end-start+1):
atom = num[start -1+j]
sum += atom
print(sum)
sum = 0
์ด๋ ๊ฒ ํ์๋๋ฐ
๋ฐ๋ก ์๊ฐ์ด๊ณผ๋จ๋๋ผ๊ตฌ์ ใ
,,
๊ทผ๋ฐ ์ ๊ฐํผ๊ฑธ ๋ณด๋ N๊ฐ์ ์ฌ์ฉ๋ ์ํ์ต๋๋ค ใ ใ ใ
๋ญ๊ฐ ์๋ชป๋จ์ ์ง๊ฐํ๊ณ ์๊ฐ๋ณต์ก๋๋ฅผ ์ด๋ป๊ฒ ์ค์ผ์ง ๊ณ ๋ฏผํด๋ณด์์ต๋๋ค.
pr 5678๋ฌธ์ ๋ก ๋์ ๋ฐฐ์ด์ ํ์์๋๋ฐ
๊ทธ๋ ๋ฏธ๋ฆฌ ๋์ ๋ฐฐ์ด์ ๊ฐ๋ค์ ๊ณ์ฐํด๋๊ฐ๋ฉฐ ๋ค ์ ์ฅํด๋์ผ๋ฉด
๊ตณ์ด ๋ฐ๋ณต๋ฌธ์ ๋๋ฉฐ ๊ตฌ๊ฐํฉ์ ๋ํ๊ณ ์์ ํ์๊ฐ์๊ณ ์ฐพ๊ธฐ๋ง ํ๋ฉด ๋ฉ๋๋ค.
๋์ ๋ฐฐ์ด ์ฆ ๋ฆฌ์คํธ๋ฅผ ๋ฏธ๋ฆฌ ๋ง๋ค์ด๋์ผํ๋ N๊ฐ์ด ์ด์ ์ผ ์ฐ์ด๋๊ตฐ์ ..
N, M = map(int, input().split())
# ์
๋ ฅ ๋ฐฐ์ด ๋ฐ ๋์ ํฉ ๋ฐฐ์ด ์์ฑ
nums = list(map(int, input().split()))
prefix = [0] * (N + 1) # ๋์ ๋ฐฐ์ด(๋ฆฌ์คํธ) ์ด๊ธฐํ
# ๋์ ํฉ ๋ฐฐ์ด ์ฑ์ฐ๊ธฐ
for i in range(1, N + 1):
prefix[i] = prefix[i - 1] + nums[i - 1]
# ๊ฐ ๊ตฌ๊ฐ ํฉ ๊ณ์ฐ
for _ in range(M):
start, end = map(int, input().split())
print(prefix[end] - prefix[start - 1])
๐ ๋ฌธ์ ๋งํฌ
[๊ตฌ๊ฐ ํฉ ๊ตฌํ๊ธฐ 4]
โ๏ธ ์์๋ ์๊ฐ
9m
โจ ์๋ ์ฝ๋
๊ตฌ๊ฐํฉ ๋ฌธ์ ๋ฅผ ์ดํด๋ณด๋์ค์ ์ค๋ฒ3 ์ธ๋ฐ ์ ๋ต๋ฅ ์ด 30%๋์ธ ๋ฌธ์ ๋ฅผ ๋ฐ๊ฒฌํด์
๋ค์ด๊ฐ์ ํ์ด๋ดค์ต๋๋ค.
์ฒ์์๋ ๊ทธ๋ฅ ์ ๋ ฅ๋ฐ๊ณ ๋์, ๊ตฌ๊ฐ์ด ์ฃผ์ด์ง๋ฉด ๊ตฌ๊ฐ๋งํผ ๋์ ํฉ์ ํ๋ ๋ฌธ์ ๋ก ํ์ ์ ํ์ต๋๋ค.
๊ทธ๋ฐ๋ฐ.... ๊ทธ๋ ๊ฒ ๊ตฌํ์ ํ๋๊น ์๊ฐ ์ด๊ณผ๊ฐ ๋จ๋ ๊ฒ์ ๋๋ค.
(๋ฌธ์ ๋ฅผ ๋ฑ ๋ณด๋ฉด ์๊ฐ์ด๊ณผ๊ฒ ๊ตฌ๋ ๋ผ๋ ๊ฑธ ์๊ฒ๋๋ ๊ฒฝ์ง๊ฐ ๋๊ณ ์ถ์ต๋๋ค.....)
์๊ฐ์ด๊ณผ๋ฅผ ํด๊ฒฐํ ๋ฐฉ๋ฒ์ ๋ฐ๋ก ๋ ์ฌ๋์ต๋๋ค.
์ฒ์ ์ซ์ ๋ฐฐ์ด ์ ๋ ฅ์ ๊ทธ๋ฅ ๋ฐ์ง๋ง๊ณ , 1๋ฒ์งธ๋ถํฐ i๋ฒ์งธ ๊น์ง์ ํฉ์ i๋ฒ์งธ ์๋ฆฌ์ ๋ฃ๊ฒ๋ ์์ ํ์ต๋๋ค.
(๊ณ์ฐ์ ํธ์๋ฅผ ์ํด index๋ฅผ 1๋ถํฐ countํ์ต๋๋น)
๊ทธ๋ฌ๋ฉด i๋ฒ์งธ ๋ถํฐ j๋ฒ์งธ ๊น์ง์ ๋์ ํฉ์,
num[j] - num [i-1]
๋ก ํํ๋ ์ ์์ต๋๋ค!
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์ ๋ ฅ์ ๋ฐ์๋๋ถํฐ ์ฐ๋ฆฌ๊ฐ ๊ณ์ฐํ๊ธฐ ์ ๋ฆฌํ ํํ๋ก ๋ฐ๊พธ๋ ๋ฐฉ์์ ๊ฒฝํํด ๋ดค์ต๋๋ค!