結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー eSeFeSeF
提出日時 2020-01-22 02:06:00
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 581 ms / 2,500 ms
コード長 6,407 bytes
コンパイル時間 1,016 ms
コンパイル使用メモリ 68,228 KB
実行使用メモリ 62,736 KB
最終ジャッジ日時 2023-09-20 21:04:41
合計ジャッジ時間 10,658 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
20,660 KB
testcase_01 AC 59 ms
20,672 KB
testcase_02 AC 57 ms
20,660 KB
testcase_03 AC 58 ms
20,652 KB
testcase_04 AC 59 ms
20,632 KB
testcase_05 AC 58 ms
20,644 KB
testcase_06 AC 59 ms
22,776 KB
testcase_07 AC 62 ms
22,784 KB
testcase_08 AC 71 ms
20,752 KB
testcase_09 AC 68 ms
22,812 KB
testcase_10 AC 68 ms
20,748 KB
testcase_11 AC 423 ms
53,220 KB
testcase_12 AC 435 ms
55,244 KB
testcase_13 AC 382 ms
53,360 KB
testcase_14 AC 106 ms
24,836 KB
testcase_15 AC 271 ms
49,768 KB
testcase_16 AC 455 ms
56,964 KB
testcase_17 AC 120 ms
31,860 KB
testcase_18 AC 540 ms
59,884 KB
testcase_19 AC 355 ms
55,076 KB
testcase_20 AC 124 ms
31,320 KB
testcase_21 AC 85 ms
22,832 KB
testcase_22 AC 112 ms
33,736 KB
testcase_23 AC 69 ms
20,912 KB
testcase_24 AC 299 ms
50,736 KB
testcase_25 AC 578 ms
62,736 KB
testcase_26 AC 581 ms
60,688 KB
testcase_27 AC 488 ms
58,880 KB
testcase_28 AC 566 ms
60,696 KB
testcase_29 AC 472 ms
60,824 KB
testcase_30 AC 387 ms
58,708 KB
testcase_31 AC 354 ms
56,568 KB
testcase_32 AC 530 ms
56,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.IO;
using System.Text;
using static System.Math;
using static System.Array;
using static AtCoder.Tool;
using static AtCoder.CalcL;
namespace AtCoder
{
    class AC
    {
        const int MOD = 1000000007;
        const int INF = int.MaxValue / 2;
        const long SINF = long.MaxValue / 2;
        const double EPS = 1e-8;
        static readonly int[] dI = { 0, 1, 0, -1 };
        static readonly int[] dJ = { 1, 0, -1, 0 };
        static List<List<int>> G = new List<List<int>>();
        //static List<List<Edge>>G = new List<List<Edge>>();
        //static List<Edge> E = new List<Edge>();
        static void Main(string[] args)
        {
            //var sw = new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false };
            //Console.SetOut(sw);
            var cin = new Scanner();

            int N = int.Parse(Console.ReadLine());
            var A = cin.ReadSplitInt();
            var B = cin.ReadSplitInt();
            var D = cin.ReadSplitInt();
            Sort(D);
            var dp = new int[N + 1][];
            for(var i = 0; i <= N; i++)
            {
                dp[i] = new int[N + 1];
                Initialize(ref dp[i], -1);
            }
            dp[0][0] = N;
            int l = -1;
            int r = N;
            for(var i = 0; i <= N; i++)
            {
                for(var j = 0; j <= N; j++)
                {
                    if (i + j > N) continue;
                    l = -1;r = N;
                    int cap = A[i] + B[j];
                    while (r - l > 1)
                    {
                        int mid = (l + r) / 2;
                        if (D[mid] <= cap) { l = mid; }
                        else { r = mid; }
                    }
                    if (i > 0)
                    {
                        dp[i][j] = Max(dp[i][j], Min(dp[i - 1][j] - 1, l));
                    }
                    if (j > 0)
                    {
                        dp[i][j] = Max(dp[i][j], Min(dp[i][j - 1] - 1, l));
                    }
                }
            }
            int ans = 0;
            for(var i = 0; i <= N; i++)
            {
                for(var j = 0; j <= N; j++)
                {
                    if (i + j > N) continue;
                    if (dp[i][j] != -1) { ans = Max(ans, i + j); }
                }
            }
            Console.WriteLine(ans);
            

            //Console.Out.Flush();
        }
        struct Edge
        {
            public int from;

            public int to;
            public long dist;
            public Edge(int t, long c)
            {
                from = -1;
                to = t;
                dist = c;
            }
            public Edge(int f, int t, long c)
            {
                from = f;
                to = t;
                dist = c;
            }

        }
    }
    
    public class Scanner
    {
        public int[] ReadSplitInt()
        {
            return ConvertAll(Console.ReadLine().Split(), int.Parse);
        }
        public long[] ReadSplitLong()
        {
            return ConvertAll(Console.ReadLine().Split(), long.Parse);
        }
        public double[] ReadSplit_Double()
        {
            return ConvertAll(Console.ReadLine().Split(), double.Parse);
        }
    }
    public static class Tool
    {
        static public void Initialize<T>(ref T[] array, T initialvalue)
        {
            for (var i = 0; i < array.Length; i++)
            {
                array[i] = initialvalue;
            }
        }
        static public void Swap<T>(ref T a, ref T b)
        {
            T keep = a;
            a = b;
            b = keep;
        }

        static public void Display<T>(T[,] array2d, int n, int m)
        {
            for (var i = 0; i < n; i++)
            {
                for (var j = 0; j < m; j++)
                {
                    Console.Write($"{array2d[i, j]} ");
                }
                Console.WriteLine();
            }
        }

        static public long LPow(int a, int b)
        {
            return (long)Pow(a, b);
        }
    }
    static public class CalcI
    {
        public static int Gcd(int a, int b)
        {
            if (a * b == 0) { return Max(a, b); }
            return a % b == 0 ? b : Gcd(b, a % b);
        }
        public static int Lcm(int a, int b)
        {
            int g = Gcd(a, b);
            return a / g * b;
        }
        public static int Ceil(int n, int div)
        {
            return (n + div - 1) / div;
        }
    }
    static public class CalcL
    {
        public static long Gcd(long a, long b)
        {
            if (a * b == 0) { return Max(a, b); }
            return a % b == 0 ? b : Gcd(b, a % b);
        }
        public static long Lcm(long a, long b)
        {
            long g = Gcd(a, b);
            return a / g * b;
        }
        public static long Ceil(long n, long div)
        {
            return (n + div - 1) / div;
        }
    }
    class Modulo
    {
        private const int M = 1000000007;
        private readonly int[] m_facs;
        public int Mul(int a, int b)
        {
            return (int)(Math.BigMul(a, b) % M);
        }
        public Modulo(int n)
        {
            m_facs = new int[n + 1];
            m_facs[0] = 1;
            for (int i = 1; i <= n; ++i)
            {
                m_facs[i] = Mul(m_facs[i - 1], i);
            }
        }
        public int Fac(int n)
        {
            return m_facs[n];
        }
        public int Pow(int a, int m)
        {
            switch (m)
            {
                case 0:
                    return 1;
                case 1:
                    return a;
                default:
                    int p1 = Pow(a, m / 2);
                    int p2 = Mul(p1, p1);
                    return ((m % 2) == 0) ? p2 : Mul(p2, a);
            }
        }
        public int Div(int a, int b)
        {
            return Mul(a, Pow(b, M - 2));
        }
        public int Ncr(int n, int r)
        {
            if (n < r) { return 0; }
            if (n == r) { return 1; }
            int res = Fac(n);
            res = Div(res, Fac(r));
            res = Div(res, Fac(n - r));
            return res;
        }
        public Modulo() { }
    }
}
0