結果

問題 No.1597 Matrix Sort
ユーザー さかぽんさかぽん
提出日時 2021-07-11 00:01:42
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 432 ms / 1,500 ms
コード長 1,462 bytes
コンパイル時間 2,896 ms
コンパイル使用メモリ 108,928 KB
実行使用メモリ 45,152 KB
最終ジャッジ日時 2024-07-02 02:55:13
合計ジャッジ時間 12,515 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
19,072 KB
testcase_01 AC 35 ms
19,072 KB
testcase_02 AC 35 ms
19,200 KB
testcase_03 AC 406 ms
44,788 KB
testcase_04 AC 419 ms
45,152 KB
testcase_05 AC 427 ms
45,144 KB
testcase_06 AC 418 ms
44,780 KB
testcase_07 AC 432 ms
45,024 KB
testcase_08 AC 384 ms
44,676 KB
testcase_09 AC 394 ms
45,068 KB
testcase_10 AC 330 ms
42,880 KB
testcase_11 AC 306 ms
44,684 KB
testcase_12 AC 270 ms
42,240 KB
testcase_13 AC 356 ms
43,776 KB
testcase_14 AC 391 ms
44,816 KB
testcase_15 AC 252 ms
41,984 KB
testcase_16 AC 331 ms
43,392 KB
testcase_17 AC 367 ms
44,788 KB
testcase_18 AC 407 ms
44,904 KB
testcase_19 AC 365 ms
44,776 KB
testcase_20 AC 354 ms
44,776 KB
testcase_21 AC 347 ms
44,760 KB
testcase_22 AC 352 ms
44,228 KB
testcase_23 AC 343 ms
43,008 KB
testcase_24 AC 144 ms
35,072 KB
testcase_25 AC 142 ms
35,328 KB
testcase_26 AC 34 ms
19,072 KB
testcase_27 AC 35 ms
19,328 KB
testcase_28 AC 35 ms
19,072 KB
testcase_29 AC 35 ms
19,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

class G
{
	static int[] Read() => Array.ConvertAll(Console.ReadLine().Split(), int.Parse);
	static (int, int) Read2() { var a = Read(); return (a[0], a[1]); }
	static long[] ReadL() => Array.ConvertAll(Console.ReadLine().Split(), long.Parse);
	static (long, long, long) Read3L() { var a = ReadL(); return (a[0], a[1], a[2]); }
	static void Main() => Console.WriteLine(Solve());
	static object Solve()
	{
		var (n, k, p) = ((int, long, int))Read3L();
		var a = Read();
		var b = Read();

		Array.Sort(a);
		Array.Reverse(a);
		Array.Sort(b);
		b = b.Concat(b.Select(v => v + p)).Concat(b.Select(v => v + 2 * p)).ToArray();

		return First(0, p, x =>
		{
			// x までの個数
			var c = 0L;
			var l = new int[n];
			var r = new int[n];

			foreach (var (i, j) in TwoPointers(n, b.Length, (i, j) => a[i] + b[j] >= p))
				l[i] = j;
			foreach (var (i, j) in TwoPointers(n, b.Length, (i, j) => a[i] + b[j] > p + x))
				r[i] = j;

			for (int i = 0; i < n; i++)
				c += r[i] - l[i];
			return c >= k;
		});
	}

	static int First(int l, int r, Func<int, bool> f)
	{
		int m;
		while (l < r) if (f(m = l + (r - l - 1) / 2)) r = m; else l = m + 1;
		return r;
	}

	static IEnumerable<(int i, int j)> TwoPointers(int n1, int n2, Func<int, int, bool> predicate)
	{
		for (int i = 0, j = 0; i < n1 && j < n2; ++i)
			for (; j < n2; ++j)
				if (predicate(i, j)) { yield return (i, j); break; }
	}
}
0