結果

問題 No.90 品物の並び替え
ユーザー kou6839kou6839
提出日時 2014-12-09 13:17:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 794 ms / 5,000 ms
コード長 1,104 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 80,656 KB
実行使用メモリ 60,896 KB
最終ジャッジ日時 2024-06-11 18:51:16
合計ジャッジ時間 5,552 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,272 KB
testcase_01 AC 284 ms
60,808 KB
testcase_02 AC 123 ms
54,284 KB
testcase_03 AC 207 ms
59,028 KB
testcase_04 AC 211 ms
58,392 KB
testcase_05 AC 289 ms
60,708 KB
testcase_06 AC 273 ms
60,632 KB
testcase_07 AC 170 ms
57,380 KB
testcase_08 AC 135 ms
54,828 KB
testcase_09 AC 794 ms
60,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 int isUsed=0;
	static void check(String now){
		if(now.length()==r){
			eee(now);
			return;
		}
		for(int i=0;i<r;i++){
			if( (isUsed&1<<i)==1<<i) continue;
			String ttt=new String(now);
			ttt+=i;
			isUsed+=1<<i;
			check(ttt);
			isUsed-=1<<i;
		}
	}
	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();
        ArrayList<Integer> uuu= new ArrayList<>();
        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);
    }
}			
0