結果

問題 No.1597 Matrix Sort
ユーザー さかぽんさかぽん
提出日時 2021-07-09 23:06:15
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,027 bytes
コンパイル時間 965 ms
コンパイル使用メモリ 108,288 KB
実行使用メモリ 41,984 KB
最終ジャッジ日時 2024-07-01 18:13:02
合計ジャッジ時間 29,193 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
19,072 KB
testcase_01 AC 34 ms
19,072 KB
testcase_02 AC 33 ms
19,200 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 1,226 ms
41,984 KB
testcase_09 AC 1,271 ms
41,728 KB
testcase_10 AC 743 ms
39,424 KB
testcase_11 AC 752 ms
41,728 KB
testcase_12 AC 949 ms
37,760 KB
testcase_13 AC 1,314 ms
40,832 KB
testcase_14 AC 1,496 ms
41,984 KB
testcase_15 AC 569 ms
37,376 KB
testcase_16 AC 875 ms
40,192 KB
testcase_17 AC 1,001 ms
41,600 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 918 ms
40,832 KB
testcase_23 AC 797 ms
39,808 KB
testcase_24 AC 167 ms
33,792 KB
testcase_25 AC 162 ms
33,664 KB
testcase_26 AC 32 ms
18,944 KB
testcase_27 AC 33 ms
19,200 KB
testcase_28 AC 33 ms
19,200 KB
testcase_29 AC 34 ms
19,328 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(b);
		b = b.Concat(b.Select(v => v + p)).ToArray();

		return First(0, p, x =>
		{
			// x までの個数
			var c = 0L;

			foreach (var v in a)
			{
				var l = First(0, b.Length, i => v + b[i] >= p);
				var r = First(0, b.Length, i => v + b[i] > p + x);
				c += r - l;
			}
			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;
	}
}
0