結果
問題 | No.1060 素敵な宝箱 |
ユーザー | TAISA_ |
提出日時 | 2020-05-22 22:05:25 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 10 ms / 2,000 ms |
コード長 | 1,993 bytes |
コンパイル時間 | 2,457 ms |
コンパイル使用メモリ | 200,192 KB |
最終ジャッジ日時 | 2025-01-10 14:45:08 |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
ソースコード
#include <bits/stdc++.h> #define all(vec) vec.begin(), vec.end() #define pb push_back #define eb emplace_back #define fi first #define se second using namespace std; using ll = long long; using P = pair<ll, ll>; template <class T> using V = vector<T>; template <class T> inline void chmin(T &a, const T &b) { a = min(a, b); } template <class T> inline void chmax(T &a, const T &b) { a = max(a, b); } template <class T> inline bool kbit(const T &x, const int &k) { return ((x >> k) & 1LL); } inline int popcount(const int &n) { return __builtin_popcount(n); } inline ll popcountll(const ll &n) { return __builtin_popcountll(n); } template <class T> void zip(V<T> &v) { sort(all(v)); v.erase(unique(all(v)), v.end()); } void dump() { cerr << '\n'; } template <class Head, class... Tail> void dump(Head &&head, Tail &&... tail) { cerr << head << (sizeof...(Tail) == 0 ? " " : ", "); dump(std::move(tail)...); } template <class T> void print(const vector<T> &v) { for (int i = 0; i < v.size(); i++) cout << v[i] << (i + 1 == v.size() ? '\n' : ' '); } template <class T> void read(vector<T> &v) { for (int i = 0; i < v.size(); i++) cin >> v[i]; } constexpr char sp = ' ', newl = '\n'; constexpr int dx[4] = {0, 1, 0, -1}, dy[4] = {1, 0, -1, 0}; constexpr ll INF = (1LL << 30) - 1LL; constexpr ll MOD = 1e9 + 7; int main() { ios::sync_with_stdio(0); cin.tie(0); int n, m; cin >> n >> m; V<V<ll>> a(n, V<ll>(m)); for (int i = 0; i < n; i++) { read(a[i]); } V<ll> sum(m); for (int j = 0; j < m; j++) { for (int i = 0; i < n; i++) sum[j] += a[i][j]; } V<ll> v(n); for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { v[i] += sum[j] * a[i][j]; } } sort(all(v)); reverse(all(v)); ll res = 0; for (int i = 0; i < n; i++) { if (i % 2 == 0) { res += v[i]; } else { res -= v[i]; } } cout << res << newl; }