結果

問題 No.1742 Binary Indexed Train
ユーザー kakel-sankakel-san
提出日時 2023-12-29 14:20:55
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 367 ms / 3,000 ms
コード長 1,693 bytes
コンパイル時間 6,821 ms
コンパイル使用メモリ 167,448 KB
実行使用メモリ 217,952 KB
最終ジャッジ日時 2024-09-27 16:05:43
合計ジャッジ時間 16,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
31,232 KB
testcase_01 AC 55 ms
31,104 KB
testcase_02 AC 53 ms
31,232 KB
testcase_03 AC 246 ms
66,232 KB
testcase_04 AC 255 ms
66,496 KB
testcase_05 AC 247 ms
66,668 KB
testcase_06 AC 160 ms
62,944 KB
testcase_07 AC 157 ms
62,824 KB
testcase_08 AC 362 ms
65,604 KB
testcase_09 AC 367 ms
65,864 KB
testcase_10 AC 358 ms
65,576 KB
testcase_11 AC 364 ms
65,720 KB
testcase_12 AC 363 ms
65,740 KB
testcase_13 AC 239 ms
66,480 KB
testcase_14 AC 242 ms
66,608 KB
testcase_15 AC 119 ms
53,760 KB
testcase_16 AC 114 ms
50,540 KB
testcase_17 AC 224 ms
67,008 KB
testcase_18 AC 233 ms
66,572 KB
testcase_19 AC 142 ms
59,676 KB
testcase_20 AC 66 ms
34,560 KB
testcase_21 AC 129 ms
55,936 KB
testcase_22 AC 254 ms
66,676 KB
testcase_23 AC 78 ms
37,888 KB
testcase_24 AC 68 ms
34,560 KB
testcase_25 AC 230 ms
62,108 KB
testcase_26 AC 153 ms
60,492 KB
testcase_27 AC 206 ms
61,636 KB
testcase_28 AC 75 ms
37,504 KB
testcase_29 AC 249 ms
65,252 KB
testcase_30 AC 130 ms
58,496 KB
testcase_31 AC 240 ms
66,596 KB
testcase_32 AC 127 ms
58,624 KB
testcase_33 AC 85 ms
44,216 KB
testcase_34 AC 184 ms
217,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (90 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    static long[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, q) = ((int)c[0], (int)c[1]);
        var query = NArr(q);
        var ans = new List<int>(q);
        foreach (var que in query)
        {
            var s = Pop(que[0]);
            var t = Pop(que[1]);
            while (s.Count > 0 && t.Count > 0 && s[0] == t[0])
            {
                s.RemoveAt(0);
                t.RemoveAt(0);
            }
            var ai = 0;
            while (true)
            {
                if (s.Count == 0 || (s.Count == 1 && s[0] == t[0])) break;
                ++ai;
                var cur = s[^1];
                s.RemoveAt(s.Count - 1);
                while (s.Count > 0 && s[^1] == cur + 1)
                {
                    ++cur;
                    s.RemoveAt(s.Count - 1);
                }
                s.Add(cur + 1);
            }
            ans.Add(ai + t.Count - s.Count);
        }
        WriteLine(string.Join("\n", ans));
    }
    static List<int> Pop(long a)
    {
        var ans = new List<int>();
        var pos = 0;
        while (a > 0)
        {
            if (a % 2 == 1) ans.Add(pos);
            a >>= 1;
            ++pos;
        }
        ans.Reverse();
        return ans;
    }
}
0