結果
問題 | No.8011 品物の並び替え (Extra) |
ユーザー |
|
提出日時 | 2020-03-11 07:29:32 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 133 ms / 5,000 ms |
コード長 | 1,237 bytes |
コンパイル時間 | 1,068 ms |
コンパイル使用メモリ | 101,060 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-16 00:03:12 |
合計ジャッジ時間 | 2,938 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 |
コンパイルメッセージ
main.cpp:11:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 11 | main() | ^~~~
ソースコード
#include<iostream> #include<queue> #include<algorithm> #include<random> using namespace std; int N,M; int S[50][50]; const int attempt=200; const int MaxTurn=10000; const int swapwd=5; main() { cin>>N>>M; for(int i=0;i<M;i++) { int u,v,c;cin>>u>>v>>c; S[u][v]=c; } mt19937 rng(0); pair<int,vector<int> >ans{}; for(int atc=0;atc<attempt;atc++) { vector<int>fstate(N); for(int i=0;i<N;i++)fstate[i]=i; shuffle(fstate.begin(),fstate.end(),rng); int cstate=0; for(int i=0;i<N;i++)for(int j=i+1;j<N;j++)cstate+=S[fstate[i]][fstate[j]]; pair<int,vector<int> >p=make_pair(cstate,fstate); for(int turn=0;turn<MaxTurn;turn++) { int ts=p.first; int id=rng()%(N-1); int wd=rng()%min(N-id-1,swapwd-1)+1; ts-=S[p.second[id]][p.second[id+wd]]; ts+=S[p.second[id+wd]][p.second[id]]; for(int i=1;i<wd;i++) { ts-=S[p.second[id]][p.second[id+i]]; ts-=S[p.second[id+i]][p.second[id+wd]]; ts+=S[p.second[id+wd]][p.second[id+i]]; ts+=S[p.second[id+i]][p.second[id]]; } if(p.first<ts||p.first==ts&&rng()%2==1) { p.first=ts; swap(p.second[id],p.second[id+wd]); } } ans=max(ans,p); } cout<<ans.first<<endl; for(int i=0;i<N;i++)cout<<ans.second[i]<<(i+1==N?"\n":" "); }