結果
問題 | No.1060 素敵な宝箱 |
ユーザー | 増井舜 |
提出日時 | 2020-06-27 16:51:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 14 ms / 2,000 ms |
コード長 | 4,880 bytes |
コンパイル時間 | 1,955 ms |
コンパイル使用メモリ | 179,300 KB |
実行使用メモリ | 11,904 KB |
最終ジャッジ日時 | 2024-07-05 17:48:50 |
合計ジャッジ時間 | 3,235 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
11,456 KB |
testcase_01 | AC | 7 ms
11,332 KB |
testcase_02 | AC | 7 ms
11,456 KB |
testcase_03 | AC | 7 ms
11,332 KB |
testcase_04 | AC | 7 ms
11,460 KB |
testcase_05 | AC | 7 ms
11,392 KB |
testcase_06 | AC | 6 ms
11,584 KB |
testcase_07 | AC | 7 ms
11,464 KB |
testcase_08 | AC | 7 ms
11,332 KB |
testcase_09 | AC | 7 ms
11,328 KB |
testcase_10 | AC | 7 ms
11,332 KB |
testcase_11 | AC | 7 ms
11,464 KB |
testcase_12 | AC | 9 ms
11,648 KB |
testcase_13 | AC | 10 ms
11,692 KB |
testcase_14 | AC | 10 ms
11,692 KB |
testcase_15 | AC | 12 ms
11,844 KB |
testcase_16 | AC | 11 ms
11,688 KB |
testcase_17 | AC | 8 ms
11,648 KB |
testcase_18 | AC | 9 ms
11,776 KB |
testcase_19 | AC | 9 ms
11,716 KB |
testcase_20 | AC | 11 ms
11,560 KB |
testcase_21 | AC | 11 ms
11,716 KB |
testcase_22 | AC | 11 ms
11,716 KB |
testcase_23 | AC | 9 ms
11,588 KB |
testcase_24 | AC | 14 ms
11,776 KB |
testcase_25 | AC | 14 ms
11,904 KB |
testcase_26 | AC | 14 ms
11,904 KB |
ソースコード
#include "bits/stdc++.h" #include<vector> #include<iostream> #include<queue> #include<algorithm> #include<map> #include<set> #include<iomanip> #include<assert.h> #include<unordered_map> #include<unordered_set> #include<string> #include<stack> #include<complex> #include<memory> #pragma warning(disable:4996) using namespace std; using ld = long double; template<class T> using Table = vector<vector<T>>; const ld eps=1e-9; using Graph=vector<vector<int>>; using ll=long long; #define WHATS(var)cout<<__LINE__<<' '<<#var<<"="<<var<<endl; template<class S, class T> ostream& operator <<(ostream &os, const pair<S, T> v){ os << "( " << v.first << ", " << v.second << ")"; return os; } template<class T> ostream& operator <<(ostream &os, const vector<T> &v){ for(int i = 0; i < v.size(); i++){if(i > 0){os << " ";} os << v[i];} return os; } template<class T> ostream& operator <<(ostream &os, const vector<vector<T>> &v){ for(int i = 0; i < v.size(); i++){if(i > 0){os << endl;} os << v[i];} return os; } template<class T> ostream& operator <<(ostream &os, const vector<set<T>> &v){ for(int i = 0; i < v.size(); i++){if(i > 0){os << endl;} os << v[i];} return os; } template<class T> ostream& operator <<(ostream &os, const set<T> &v){ int i=0; for(auto it:v){ if(i > 0){os << ' ';} os << it; i++; } return os; } const int mod = 1000000007; struct Mod { public: int num; Mod() : Mod(0) { ; } Mod(long long int n) : num((n % mod + mod) % mod) { static_assert(mod<INT_MAX / 2, "mod is too big, please make num 'long long int' from 'int'"); } Mod(int n) : Mod(static_cast<long long int>(n)) { ; } operator int() { return num; } }; Mod operator+(const Mod a, const Mod b) { return Mod((a.num + b.num) % mod); } Mod operator+(const long long int a, const Mod b) { return Mod(a) + b; } Mod operator+(const Mod a, const long long int b) { return b + a; } Mod operator++(Mod &a) { return a + Mod(1); } Mod operator-(const Mod a, const Mod b) { return Mod((mod + a.num - b.num) % mod); } Mod operator-(const long long int a, const Mod b) { return Mod(a) - b; } Mod operator--(Mod &a) { return a - Mod(1); } Mod operator*(const Mod a, const Mod b) { return Mod(((long long)a.num * b.num) % mod); } Mod operator*(const long long int a, const Mod b) { return Mod(a)*b; } Mod operator*(const Mod a, const long long int b) { return Mod(b)*a; } Mod operator*(const Mod a, const int b) { return Mod(b)*a; } Mod operator+=(Mod &a, const Mod b) { return a = a + b; } Mod operator+=(long long int &a, const Mod b) { return a = a + b; } Mod operator-=(Mod &a, const Mod b) { return a = a - b; } Mod operator-=(long long int &a, const Mod b) { return a = a - b; } Mod operator*=(Mod &a, const Mod b) { return a = a * b; } Mod operator*=(long long int &a, const Mod b) { return a = a * b; } Mod operator*=(Mod& a, const long long int &b) { return a = a * b; } Mod operator^(const Mod a, const int n) { if (n == 0) return Mod(1); Mod res = (a * a) ^ (n / 2); if (n % 2) res = res * a; return res; } Mod mod_pow(const Mod a, const long long n) { if (n == 0) return Mod(1); Mod res = mod_pow((a * a), (n / 2)); if (n % 2) res = res * a; return res; } Mod inv(const Mod a) { return a ^ (mod - 2); } Mod operator/(const Mod a, const Mod b) { assert(b.num != 0); return a * inv(b); } Mod operator/(const long long int a, const Mod b) { return Mod(a) / b; } Mod operator/=(Mod &a, const Mod b) { return a = a / b; } #define MAX_MOD_N 1024000 Mod fact[MAX_MOD_N], factinv[MAX_MOD_N]; void init(const int amax = MAX_MOD_N) { fact[0] = Mod(1); factinv[0] = 1; for (int i = 0; i < amax - 1; ++i) { fact[i + 1] = fact[i] * Mod(i + 1); factinv[i + 1] = factinv[i] / Mod(i + 1); } } Mod comb(const int a, const int b) { return fact[a] * factinv[b] * factinv[a - b]; } struct UnionFind { vector<int> data; UnionFind(int size) : data(size, -1) { } bool unionSet(int x, int y) { x = root(x); y = root(y); if (x != y) { if (data[y] < data[x]) swap(x, y); data[x] += data[y]; data[y] = x; } return x != y; } bool findSet(int x, int y) { return root(x) == root(y); } int root(int x) { return data[x] < 0 ? x : data[x] = root(data[x]); } int size(int x) { return -data[root(x)]; } }; int main() { ios::sync_with_stdio(false); cin.tie(); int H,W;cin>>H>>W; vector<vector<ll>>field(H,vector<ll>(W)); for(int y=0;y<H;++y){ for(int x=0;x<W;++x)cin>>field[y][x]; } vector<ll>vals(W); for(int x=0;x<W;++x){ for(int y=0;y<H;++y)vals[x]+=field[y][x]; } vector<ll>scores(H); for(int y=0;y<H;++y){ for(int x=0;x<W;++x){ scores[y]+=vals[x]*field[y][x]; } } sort(scores.begin(),scores.end(),greater<ll>()); ll answer=0; for(int i=0;i<H;++i){ if(i%2==0)answer+=scores[i]; else answer-=scores[i]; } cout<<answer<<endl; return 0; }