結果

問題 No.39 桁の数字を入れ替え
ユーザー scachescache
提出日時 2014-10-14 23:50:01
言語 Java
(openjdk 23)
結果
AC  
実行時間 194 ms / 5,000 ms
コード長 1,143 bytes
コンパイル時間 3,686 ms
コンパイル使用メモリ 78,084 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-10-02 05:50:35
合計ジャッジ時間 7,177 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.ArrayList;
import java.util.Scanner;

/**
 * yukicoder no.39
 * @author scache
 *
 */
public class Main3 {
	public static void main(String[] args) {
		Main3 p = new Main3();
	}

	public Main3() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		solve(n);
	}

	public void solve(int n) {
		ArrayList<Integer> l = new ArrayList<Integer>();
		int t = n;
		while(t>0){
			l.add(t%10);
			t /= 10;
		}
		
		int res = rec(n, l, 0, 0);
		System.out.println(res);
	}

	private int rec(int n, ArrayList<Integer> l, int used, int cur) {
		if(used == (1<<l.size())-1){
			if(ok(n, cur))
				return cur;
			else
				return 0;
		}
		
		int res = 0;
		for(int i=0;i<l.size();i++){
			if((used&(1<<i)) == 0){
				int next = cur*10 + l.get(i);
				res = Math.max(res, rec(n, l, used|(1<<i), next));
			}
		}
		
		return res;
	}

	private boolean ok(int n, int cur) {
		int count = 0;
		int numDigit = 0;
		while(n>0){
			if(n%10 == cur%10)
				count++;
			n /= 10;
			cur /= 10;
			
			numDigit++;
		}
		return numDigit-count==2 || numDigit-count==0;
	}

}
0