結果
問題 | No.3011 品物の並び替え (Extra) |
ユーザー | tails |
提出日時 | 2015-05-04 00:08:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 963 ms / 5,000 ms |
コード長 | 814 bytes |
コンパイル時間 | 1,155 ms |
コンパイル使用メモリ | 158,944 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 18:05:41 |
合計ジャッジ時間 | 7,946 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 417 ms
5,248 KB |
testcase_01 | AC | 599 ms
5,376 KB |
testcase_02 | AC | 940 ms
5,376 KB |
testcase_03 | AC | 858 ms
5,376 KB |
testcase_04 | AC | 627 ms
5,376 KB |
testcase_05 | AC | 430 ms
5,376 KB |
testcase_06 | AC | 443 ms
5,376 KB |
testcase_07 | AC | 587 ms
5,376 KB |
testcase_08 | AC | 963 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int n,m; int t[50][50]; int a[50],b[50]; int main(){ cin>>n>>m; for(int j=0;j<m;++j){ int a,b,s; cin >>a>>b>>s; t[a][b]=s; } srand(1); for(int i=0;i<n;++i){ a[i]=i; } int e=0; for(int c=0;c<1000000;++c){ for(int i=0;i<n;++i){ b[i]=a[i]; } { int i=rand()%n; int j=rand()%n; if(i!=j)b[i]^=b[j]^=b[i]^=b[j]; } { int i=rand()%n; int j=rand()%n; if(i!=j)b[i]^=b[j]^=b[i]^=b[j]; } int r=0; for(int i=0;i<n;++i){ for(int j=i+1;j<n;++j){ r+=t[b[i]][b[j]]; } } if(r>e){ e=r; for(int i=0;i<n;++i){ a[i]=b[i]; } } } cout << e << endl; for(int i=0;i<n;++i){ cout << a[i] << " "; } cout << endl; return 0; }