結果
問題 | No.1060 素敵な宝箱 |
ユーザー | kotatsugame |
提出日時 | 2020-05-22 22:07:47 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 18 ms / 2,000 ms |
コード長 | 509 bytes |
コンパイル時間 | 1,505 ms |
コンパイル使用メモリ | 76,904 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-05 17:43:37 |
合計ジャッジ時間 | 1,681 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 24 |
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 8 | main() | ^~~~
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; int N,M; int A[300][300]; int S[300]; main() { cin>>N>>M; for(int i=0;i<N;i++) { for(int j=0;j<M;j++) { cin>>A[i][j]; S[j]+=A[i][j]; } } vector<pair<long,int> >T(N); for(int i=0;i<N;i++) { T[i]=make_pair(0,i); for(int j=0;j<M;j++)T[i].first+=S[j]*A[i][j]; } sort(T.begin(),T.end()); long ans=0; for(int i=0;i<N;i++) { long now=T[N-i-1].first; if(i%2)ans-=now; else ans+=now; } cout<<ans<<endl; }