티스토리 뷰
출처 : https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV13_BWKACUCFAYh
#include <iostream>
#include <algorithm>
#include <memory.h>
using namespace std;
int result;
int arr[101][101], a, b;
int main()
{
int T; int t;
T = 10;
while (T--)
{
cin >> t; result = 0; memset(arr, 0, sizeof(arr)); a = 0; b = 0;
for (int i = 0; i < 100; i++)
{
for (int j = 0; j < 100; j++)
{
cin >> arr[i][j];
if (i == j) a += arr[i][j];
if ((i + j + 1) == 100) b += arr[i][j];
arr[100][j] += arr[i][j];
arr[i][100] += arr[i][j];
}
}
int z = 100; int i = 0;
while (z--)
{
result = max(result, arr[100][i]);
result = max(result, arr[i][100]);
i++;
}
result = max(result, a);
result = max(result, b);
cout << "#" << t << " " << result << endl;
}
return 0;
}
'알고리즘 > SWEA' 카테고리의 다른 글
[SWEA 1211] Ladder2 (0) | 2018.08.06 |
---|---|
[SWEA 1210] Ladder1 (0) | 2018.08.06 |
[SWEA 1204] 최빈수 구하기 (0) | 2018.08.06 |
[SWEA 1208] Flatten (0) | 2018.08.06 |
[SWEA 1206] View (0) | 2018.08.05 |
- Total
- Today
- Yesterday
- 게리맨더링 2
- hackerrank
- 17779
- 백준
- SW Expert Academy
- 2018 KAKAO BLIND RECRUITMENT
- 트렌드
- 이차원 배열과 연산
- scanf
- 2018 카카오 블라인드 채용
- STL
- 팁
- 알고리즘
- 연구소 3
- 17143
- 역량 테스트
- SWEA
- 17140
- 미세먼지 안녕!
- 17142
- 17144
- DFS
- 시간 복잡도
- boj
- 삼성
- string
- DP
- 17837
- 입출력
- 새로운 게임 2
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |