結果

問題 No.2408 Lakes and Fish
ユーザー bluemeganebluemegane
提出日時 2023-08-12 07:35:11
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 1,666 bytes
コンパイル時間 942 ms
コンパイル使用メモリ 114,252 KB
実行使用メモリ 39,916 KB
最終ジャッジ日時 2024-11-19 06:28:28
合計ジャッジ時間 6,246 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,028 KB
testcase_01 AC 27 ms
23,796 KB
testcase_02 AC 27 ms
24,048 KB
testcase_03 AC 26 ms
24,024 KB
testcase_04 AC 199 ms
34,920 KB
testcase_05 AC 200 ms
36,948 KB
testcase_06 AC 197 ms
37,676 KB
testcase_07 AC 216 ms
39,916 KB
testcase_08 AC 220 ms
38,240 KB
testcase_09 AC 217 ms
38,368 KB
testcase_10 AC 216 ms
38,256 KB
testcase_11 AC 128 ms
35,612 KB
testcase_12 AC 162 ms
36,424 KB
testcase_13 AC 66 ms
30,580 KB
testcase_14 AC 105 ms
31,748 KB
testcase_15 AC 180 ms
37,392 KB
testcase_16 AC 83 ms
34,916 KB
testcase_17 AC 73 ms
29,888 KB
testcase_18 AC 118 ms
36,252 KB
testcase_19 AC 173 ms
35,344 KB
testcase_20 AC 173 ms
30,708 KB
testcase_21 AC 179 ms
31,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using static System.Math;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var m = int.Parse(line[1]);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        getAns(n, m, a);
    }
    static void getAns(int n, int m, int[] a)
    {
        var ans = 0L;
        for (int i = 0; i < m; i++)
        {
            string[] line = Console.ReadLine().Trim().Split(' ');
            var f = int.Parse(line[0]);
            var b = int.Parse(line[1]);
            var w = int.Parse(line[2]);
            var p = LowerBound(a, f);
            if (p != n && a[p] == f) { ans += w; continue; }
            else ans += b;
            int c;
            if (p == n) c = f - a[n - 1];
            else if (p == 0) c = a[0] - f;
            else
            {
                var c1 = a[p] - f;
                var c2 = f - a[p - 1];
                c = Min(c1, c2);
            }
            ans += Max(0, w - b - c);
        }
        Console.WriteLine(ans);
    }
    static int LowerBound<T>(T[] arr, int start, int end, T value, IComparer<T> comparer)
    {
        var low = start;
        var high = end;
        while (low < high)
        {
            var mid = (high + low) / 2;
            if (comparer.Compare(arr[mid], value) < 0) low = mid + 1;
            else high = mid;
        }
        return low;
    }
    static int LowerBound<T>(T[] arr, T value) where T : IComparable
       => LowerBound(arr, 0, arr.Length, value, Comparer<T>.Default);
}
0