티스토리 뷰

알고리즘/SWEA

[SWEA 1209] Sum

히더 2018. 8. 6. 17:10

출처 : 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
링크
«   2025/01   »
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
글 보관함