結果
| 問題 | No.1060 素敵な宝箱 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-03-28 17:28:49 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 9 ms / 2,000 ms |
| コード長 | 1,565 bytes |
| 記録 | |
| コンパイル時間 | 6,744 ms |
| コンパイル使用メモリ | 381,904 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-03-28 17:28:57 |
| 合計ジャッジ時間 | 5,795 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 24 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
//using namespace atcoder;
using ll = long long;
using ull = unsigned long long;
using i128 = __int128_t;
using u128 = unsigned __int128_t;
using mint = atcoder::static_modint<998244353>;
const int mod = 998244353;
#include <chrono>
mt19937_64 rng(std::chrono::steady_clock::now().time_since_epoch().count());
int dx[8] = {-1, 1, 0, 0, -1, -1, 1, 1};
int dy[8] = {0, 0, -1, 1, -1, 1, -1, 1};
template<class T>
bool chmin(T& a, const T& b){
if (b < a){
a = b;
return true;
}
else {
return false;
}
}
template<class T>
bool chmax(T& a, const T& b){
if (a < b){
a = b;
return true;
}
else {
return false;
}
}
void solve(){
int n, m;
cin >> n >> m;
vector<vector<ll>> a(n, vector<ll> (m));
vector<ll> cnt(m);
for (int i = 0; i < n; i++){
for (int j = 0; j < m; j++){
cin >> a[i][j];
cnt[j] += a[i][j];
}
}
vector<ll> v(n);
for (int i = 0; i < n; i++){
for (int j = 0; j < m; j++){
v[i] += cnt[j] * a[i][j];
}
}
sort(v.rbegin(), v.rend());
ll ans = 0;
for (int i = 0; i < n; i++){
if (i & 1){
ans -= v[i];
}
else {
ans += v[i];
}
}
cout << ans << '\n';
};
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
int t = 1;
while(t--){
cout << fixed << setprecision(15);
solve();
}
}