hihocoder-1615-矩阵游戏II
生活随笔
收集整理的這篇文章主要介紹了
hihocoder-1615-矩阵游戏II
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
hihocoder-1615-矩陣游戲II
#1615 : 矩陣游戲II
時間限制:10000ms 單點時限:1000ms 內存限制:256MB描述
給定一個NxN的整數矩陣,小Hi每次操作可以選擇兩列,將這兩列中的所有數變成它的相反數。
小Hi可以進行任意次操作,他的目標是使矩陣中所有數的和盡量大。你能求出最大可能的和嗎?
輸入
第一行一個整數N。 ?
以下N行,每行N個整數Aij。 ?
對于30%的數據,2 ≤ N ≤ 10 ?
對于100%的數據,2 ≤ N ≤ 200, -1000 ≤ Aij?≤ 1000
輸出
最大可能的和
樣例輸入?
?
貪心算法
將最小兩兩的迭加,如果為負為取相反,如果為正則相加。
?
#include <cstdio> #include <cstring> #include <cstdlib> const int MAXN = 200 + 10; int n, mp[MAXN][MAXN], a[MAXN]; int cmp(const void *a, const void *b){return (*(int *)a - *(int *)b); } int main(){freopen("in.txt", "r", stdin); int ans; while(scanf("%d", &n) != EOF){memset(a, 0, sizeof(a)); for(int i=0; i<n; ++i){ for(int j=0; j<n; ++j){scanf("%d", &mp[i][j]); a[j] += mp[i][j]; }}ans = 0; qsort(a, n, sizeof(a[0]), cmp); int i = 0; while(i + 1 < n && a[i] < 0){if( a[i+1] + a[i] < 0 ){ans -= (a[i] + a[i+1]); }else{ans += (a[i] + a[i+1]); }i = i + 2; }for( ; i<n; ++i){ans += a[i]; } printf("%d\n", ans );}return 0; }
轉載于:https://www.cnblogs.com/zhang-yd/p/7756109.html
總結
以上是生活随笔為你收集整理的hihocoder-1615-矩阵游戏II的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ( 1 )Linux 常用命令
- 下一篇: GitHub如何删除一个reposito