Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- map
- Deque
- 시스템프로그래밍
- 자료구조
- queue
- Stack
- 수광 소자
- Array
- 아두이노 소스
- Algorithm
- 컴퓨터 그래픽스
- vector
- stl
- list
- html
- Visual Micro
- 통계학
- c++
- WinAPI
- 라인트레이서
- C언어
- Arduino
- 아두이노
- 운영체제
- directx
- arduino compiler
- 아두이노 컴파일러
- priority_queue
- LineTracer
- set
Archives
- Today
- Total
Kim's Programming
2001. 파리 퇴치 본문
2001. 파리 퇴치
풀이 방법
<코드>
#include<iostream> #include <cstring> using namespace std; int CheckTotal(int* pointer, int nSize, int mSize) { int sum{ 0 }; for (int i = 0; i < mSize; i++) for (int j = 0; j < mSize; j++) sum += *(pointer + (nSize * i) + j); return sum; } int main(int argc, char** argv) { std::ios::sync_with_stdio(false); std::cout.tie(nullptr); std::cin.tie(nullptr); int test_case; int T; cin >> T; for (test_case = 1; test_case <= T; ++test_case) { int nValue{ 0 }, mValue{ 0 }; std::cin >> nValue >> mValue; int* dataArray = new int[nValue*nValue]; for (int i = 0; i < nValue; i++) for (int j = 0; j < nValue; j++) std::cin >> dataArray[i*nValue + j]; int max{ 0 }; for (int i = 0; i < nValue - mValue + 1; i++) for (int j = 0; j < nValue - mValue + 1; j++) { int sum = CheckTotal(&dataArray[i*nValue + j], nValue, mValue); if (max < sum) max = sum; } std::cout << "#" << test_case << " " << max << "\n"; delete[] dataArray; } }
'SW ExpertAcademy > D2' 카테고리의 다른 글
2007. 패턴 마디의 길이 (0) | 2018.12.01 |
---|---|
2005. 파스칼의 삼각형 (0) | 2018.12.01 |
1989. 초심자의 회문 검사 (0) | 2018.12.01 |
1986. 지그재그 숫자 (0) | 2018.12.01 |
1984. 중간 평균값 구하기 (0) | 2018.12.01 |