結果
| 問題 |
No.90 品物の並び替え
|
| コンテスト | |
| ユーザー |
kou6839
|
| 提出日時 | 2014-12-08 23:01:52 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 1,073 ms / 5,000 ms |
| コード長 | 988 bytes |
| コンパイル時間 | 2,735 ms |
| コンパイル使用メモリ | 85,704 KB |
| 実行使用メモリ | 50,712 KB |
| 最終ジャッジ日時 | 2024-06-11 18:31:58 |
| 合計ジャッジ時間 | 6,951 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 9 |
ソースコード
import java.math.*;
import java.util.*;
public class Main {
static int[] i1;
static int[] i2;
static int[] ten;
static int ans=0;
static int r;
static int g;
static void check(String now){
if(now.length()==r){
eee(now);
return;
}
for(int i=0;i<r;i++){
if(now.contains(i+"")) continue;
String ttt=new String(now);
ttt+=i;
check(ttt);
}
}
static void eee(String now){
int temp=0;
for(int i=0;i<g;i++){
if(now.indexOf(i1[i]+"")<now.indexOf(i2[i]+"") ) temp+=ten[i];
}
ans=Math.max(ans, temp);
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
r = sc.nextInt();
g = sc.nextInt();
i1 = new int[g];
i2=new int[g];
ten = new int[g];
for(int i=0;i<g;i++){
i1[i]=sc.nextInt();
i2[i]=sc.nextInt();
ten[i]=sc.nextInt();
}
check("");
System.out.println(ans);
}
}
kou6839