Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- BFS
- 이젠 골드구현도 어렵네..
- COSPRO
- 시뮬레이션
- 구현
- deque
- 게더타운시작
- spring
- PS
- 다이나믹프로그래밍
- dp
- 다익스트라
- 세그먼트트리
- 백준
- 재귀함수
- 자바PS
- 백준코딩테스트
- 취득후기
- 우선순위큐
- java
- 01BFS
- YBMCOS
- 알고리즘
- QUICKSTARTGUIDE
- 완전탐색
- 엘라스틱서치
- DFS
- 네트워크플로우
- COSPROJAVA1급
- GatherTown
Archives
- Today
- Total
공부공간
BOJ - 2559 ) 수열 본문
https://www.acmicpc.net/problem/2559
K개가 될때까지 더하고, 이후에는 K길이 전만큼은 빼주면서 현재 인덱스 값을 더해주며 진행한다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int N = Integer.parseInt(st.nextToken());
int K = Integer.parseInt(st.nextToken());
int now= 0;
int answer=-987654321;
int arr[] = new int[N];
st = new StringTokenizer(br.readLine());
for(int i=0;i<N;) {arr[i] = Integer.parseInt(st.nextToken());++i;}
for(int i=0;i<N;) {
if(i<K-1) {
now+=arr[i];
} else {
now+=arr[i];
answer = answer > now ? answer : now;
now-=arr[i-K+1];
}
++i;
}
System.out.println(answer);
}
}
'알고리즘 > 구현,시뮬' 카테고리의 다른 글
BOJ - 25306 ) 연속 XOR (0) | 2022.06.29 |
---|---|
BOJ - 21609 ) 상어 중학교 (0) | 2022.05.29 |
BOJ - 2493 ) 탑 (0) | 2022.05.11 |
BOJ - 21608 ) 상어 초등학교 (2) | 2022.04.20 |
BOJ - 1780 ) 종이의 개수 (0) | 2022.03.09 |
Comments