結果
問題 | No.8011 品物の並び替え (Extra) |
ユーザー | thorikawa |
提出日時 | 2015-05-04 01:16:49 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,931 bytes |
コンパイル時間 | 2,204 ms |
コンパイル使用メモリ | 79,364 KB |
実行使用メモリ | 45,712 KB |
最終ジャッジ日時 | 2024-07-05 18:42:48 |
合計ジャッジ時間 | 4,797 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 232 ms
45,712 KB |
testcase_05 | AC | 214 ms
43,940 KB |
testcase_06 | WA | - |
testcase_07 | AC | 230 ms
44,960 KB |
testcase_08 | WA | - |
ソースコード
import java.util.Random; import java.util.Scanner; public class Main { private static double sigmoid(double x) { return 1 / (1 + Math.exp(-x)); } public static void main(String[] argv) { Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); int m = scanner.nextInt(); int[][] p = new int[n][n]; for (int i = 0; i < m; i++) { int mae = scanner.nextInt(); int ato = scanner.nextInt(); p[ato][mae] = scanner.nextInt(); } int[] ans = new int[n]; for (int i = 0; i < n; i++) ans[i] = i; Random r = new Random(); int count = 0; double T = 10000; while (T > 0.0001 && (count++) < 100000) { int a = r.nextInt(n); int b = r.nextInt(n); if (a == b) continue; if (a > b) { int t = b; b = a; a = t; } int diff = p[ans[a]][ans[b]] - p[ans[b]][ans[a]]; for (int i = a + 1; i <= b - 1; i++) { diff -= p[ans[b]][ans[i]]; diff += p[ans[a]][ans[i]]; } double prob = 0.9; if (diff <= 0.0) { prob = 0.5 * Math.exp(diff / T); } // System.out.println("diff=" + diff + ", prob=" + prob); if (r.nextDouble() < prob) { // System.out.println("change " + a + ", " + b); int tt = ans[b]; ans[b] = ans[a]; ans[a] = tt; } T *= 0.99; } int score = 0; for (int i = 0; i < n; i++) { for (int j = i + 1; j < n; j++) { score += p[ans[j]][ans[i]]; } } System.out.println(score); for (int i = 0; i < n; i++) { System.out.print(ans[i] + " "); } } }