結果

問題 No.170 スワップ文字列(Easy)
ユーザー nCk_cvnCk_cv
提出日時 2016-02-19 00:26:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,117 ms / 5,000 ms
コード長 960 bytes
コンパイル時間 2,368 ms
コンパイル使用メモリ 79,516 KB
実行使用メモリ 126,924 KB
最終ジャッジ日時 2024-12-23 00:36:48
合計ジャッジ時間 10,173 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
43,164 KB
testcase_01 AC 1,020 ms
126,144 KB
testcase_02 AC 130 ms
44,204 KB
testcase_03 AC 126 ms
42,120 KB
testcase_04 AC 188 ms
47,068 KB
testcase_05 AC 1,117 ms
126,924 KB
testcase_06 AC 1,100 ms
122,712 KB
testcase_07 AC 137 ms
43,136 KB
testcase_08 AC 133 ms
42,564 KB
testcase_09 AC 134 ms
42,596 KB
testcase_10 AC 766 ms
91,804 KB
testcase_11 AC 131 ms
43,368 KB
testcase_12 AC 135 ms
43,260 KB
testcase_13 AC 122 ms
42,024 KB
testcase_14 AC 121 ms
42,324 KB
testcase_15 AC 170 ms
45,020 KB
testcase_16 AC 133 ms
42,880 KB
testcase_17 AC 135 ms
43,092 KB
testcase_18 AC 138 ms
43,388 KB
testcase_19 AC 119 ms
41,828 KB
testcase_20 AC 130 ms
43,144 KB
testcase_21 AC 129 ms
43,060 KB
testcase_22 AC 141 ms
43,072 KB
testcase_23 AC 131 ms
42,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.awt.geom.*;
import java.io.*;

class Main {
	static HashMap<String,Boolean> map = new HashMap<String,Boolean>();
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String in = sc.next();
		StringBuilder a = new StringBuilder(in);
		dfs(a);
		System.out.println(map.size()-1);
	}
	
	static void dfs(StringBuilder a) {
		ArrayDeque<StringBuilder> queue = new ArrayDeque<StringBuilder>();
		queue.add(new StringBuilder(a));
		while(!queue.isEmpty()) {
			a = queue.pollFirst();
			String t = a.toString();
			if(map.containsKey(a.toString())) continue;
			map.put(a.toString(), true);
			int tmp = a.length();
			for(int i = 0; i < tmp; i++) {
				char b = a.charAt(i);
				for(int j = i+1; j < tmp; j++) {
					a = a.replace(i, i+1, String.valueOf(a.charAt(j)));
					a = a.replace(j, j+1, String.valueOf(b));
					queue.add(new StringBuilder(a));
					a = new StringBuilder(t);
				}
			}
		}
	}
}
0