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
- c
- 기계학습
- 숙명여자대학교 정보보안동아리
- 숙명여자대학교 정보보안 동아리
- 백준
- c++
- BOJ Python
- BOJ
- 자료구조 복습
- C언어
- WarGame
- Python
- The Loard of BOF
- 파이썬
- Sookmyung Information Security Study
- 머신러닝
- CSS
- 웹페이지 만들기
- hackctf
- 드림핵
- XSS Game
- lob
- HTML
- Javascript
- 풀이
- siss
- PHP 웹페이지 만들기
- 생활코딩
- hackerrank
- SWEA
Archives
- Today
- Total
목록11660번 (1)
혜랑's STORY
[BOJ_C++] 11660번 : 구간 합 구하기 5
(2, 2)부터 (3, 4)까지 합을 구하라는 것은 (2, 2) (3, 4) 위 표와 같이 구간의 합을 구하라는 것이다. code #define _CRT_SECURE_NO_WARNINGS #include #include #include #include #include #include #include using namespace std; int dp[1025][1025]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); memset(dp, 0, sizeof(dp)); int n, m, temp; cin >> n >> m; for (int i = 1; i temp; dp[i][j] = dp[i][j - 1] + tem..
무지성 공부방/알고리즘 해결
2021. 8. 11. 13:02