結果

問題 No.455 冬の大三角
ユーザー GrenacheGrenache
提出日時 2016-12-06 00:11:25
言語 Java
(openjdk 23)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 1,390 bytes
コンパイル時間 3,702 ms
コンパイル使用メモリ 79,572 KB
実行使用メモリ 54,624 KB
最終ジャッジ日時 2024-06-29 21:02:46
合計ジャッジ時間 13,622 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 54
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder455 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int h = sc.nextInt();
		int w = sc.nextInt();

		char[][] s = new char[h][];
		for (int i = 0; i < h; i++) {
			s[i] = sc.next().toCharArray();
		}

		Set<Integer> hsx = new HashSet<>();
		Set<Integer> hsy = new HashSet<>();
		for (int i = 0; i < h; i++) {
			for (int j = 0; j < w; j++) {
				if (s[i][j] == '*') {
					hsx.add(j);
					hsy.add(i);
				}
			}
		}

		List<Integer> alx = new ArrayList<>(hsx);
		List<Integer> aly = new ArrayList<>(hsy);

		if (alx.size() == 2 && aly.size() == 2) {
			s[aly.get(0)][alx.get(0)] = '*';
			s[aly.get(0)][alx.get(1)] = '*';
		} else if (alx.size() == 2 && aly.size() == 1) {
			int y = aly.get(0) + 1;
			if (y >= h) {
				y -= 2;
			}
			s[y][alx.get(0)] = '*';
		} else if (alx.size() == 1 && aly.size() == 2) {
			int x = alx.get(0) + 1;
			if (x >= w) {
				x -= 2;
			}
			s[aly.get(0)][x] = '*';
		}

		for (int i = 0; i < h; i++) {
			pr.println(s[i]);
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0