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
- 파이썬
- The Loard of BOF
- 숙명여자대학교 정보보안 동아리
- c++
- WarGame
- PHP 웹페이지 만들기
- hackctf
- HTML
- 풀이
- Sookmyung Information Security Study
- siss
- SWEA
- CSS
- XSS Game
- 기계학습
- BOJ
- C언어
- 백준
- BOJ Python
- c
- 생활코딩
- 드림핵
- 머신러닝
- hackerrank
- Python
- Javascript
- 숙명여자대학교 정보보안동아리
- 웹페이지 만들기
- 자료구조 복습
- lob
Archives
- Today
- Total
목록종이자르기 (1)
혜랑's STORY
[BOJ_C++] 2628번 : 종이자르기
# 문제 # 풀이 #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include using namespace std; int search(int* x, int size) { int max = -999, i = 0, j = 0; while (j < size) { j = i + 1; while (x[j] == 0) j++; if (max < j - i) max = j - i; i = j; } if (i != j) { if (max < j - i) max = j - i; } return max; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);..
무지성 공부방/알고리즘 해결
2021. 7. 20. 16:07