結果

問題 No.2094 Symmetry
ユーザー laneguelanegue
提出日時 2022-10-07 22:35:17
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 862 bytes
コンパイル時間 1,371 ms
コンパイル使用メモリ 183,248 KB
実行使用メモリ 11,996 KB
最終ジャッジ日時 2024-06-22 16:20:48
合計ジャッジ時間 6,708 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 104 ms
11,684 KB
testcase_10 AC 98 ms
11,996 KB
testcase_11 AC 99 ms
11,472 KB
testcase_12 AC 98 ms
11,880 KB
testcase_13 AC 77 ms
10,124 KB
testcase_14 AC 95 ms
10,888 KB
testcase_15 AC 99 ms
11,180 KB
testcase_16 AC 99 ms
11,464 KB
testcase_17 AC 82 ms
10,632 KB
testcase_18 AC 81 ms
10,152 KB
testcase_19 AC 104 ms
11,868 KB
testcase_20 AC 102 ms
11,396 KB
testcase_21 AC 97 ms
10,956 KB
testcase_22 AC 96 ms
10,980 KB
testcase_23 AC 79 ms
10,476 KB
testcase_24 AC 78 ms
10,344 KB
testcase_25 AC 94 ms
11,524 KB
testcase_26 AC 96 ms
11,504 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 63 ms
10,956 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 63 ms
11,756 KB
testcase_31 AC 63 ms
11,620 KB
testcase_32 AC 64 ms
10,772 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 49 ms
11,144 KB
testcase_35 AC 41 ms
10,680 KB
testcase_36 AC 38 ms
9,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;
void main(){
	auto a = readln.split.to!(long[]);
	auto N = a[0];
	auto K = a[1];
	long black = 0;
	for(auto i = 0; i < 2 * N; i++){
		auto s = readln.chomp;
		black += s.count('#');
	}
	long[][] C;
	for(auto i = 0; i < 2 * N; i++){
		C ~= readln.split.to!(long[]);
	}
	//stderr.writeln(C);
	auto gr = greedy(C, black);
	//stderr.writeln(gr);
	auto sy = symmetry(C, black) + K;
	//stderr.writeln(sy);
	writeln(max(gr, sy));
}

long greedy(long[][] c, long black){
	auto a = c.join;
	a.sort!((x, y) => x > y);
	//stderr.writeln(a);
	return a[0 .. black].sum;
}

long symmetry(long[][] c, long black){
	if(black % 2) return long.min;
	long[] a;
	for(auto i = 0; i < c.length; i++){
		for(auto j = 0; j < c[i].length / 2; j++){
			a ~= c[i][j] + c[i][$ - 1 - j];
		}
	}
	a.sort!((x, y) => x > y);
	//stderr.writeln(a);
	return a[0 .. (black / 2)].sum;
}
0