結果

問題 No.5020 Averaging
ユーザー uwiuwi
提出日時 2024-02-25 16:34:25
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 3,906 bytes
コンパイル時間 8,625 ms
コンパイル使用メモリ 158,472 KB
実行使用メモリ 205,056 KB
スコア 0
最終ジャッジ日時 2024-02-25 16:35:21
合計ジャッジ時間 54,843 ms
ジャッジサーバーID
(参考情報)
judge15 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (96 ms)。
MSBuild のバージョン 17.7.3+8ec440e68 (.NET)
  main -> /home/judge/data/code/bin/Release/net7.0/main.dll
  main -> /home/judge/data/code/bin/Release/net7.0/publish/

ソースコード

diff #

using System;
using System.ComponentModel.DataAnnotations;
using System.Diagnostics;
using System.Reflection;

class Program
{
    static void Main()
    {
        int n = ni();
        long[][] co = nml(n);

        long O = 500000000000000000L;

        List<int[]> ret = new List<int[]>();
        long lmin = O*2;
        int argmin = -1;
        for(int i = 0;i < n;i++){
            long x = (co[0][0] + co[i][0]) / 2;
            long y = (co[0][1] + co[i][1]) / 2;
            long d = Math.Abs(x - O) + Math.Abs(y - O);
            if(d < lmin){
                lmin = d;
                argmin = i;
            }
        }
        if(argmin > 0){
            long xx = (co[0][0] + co[argmin][0]) / 2;
            long yy = (co[0][1] + co[argmin][1]) / 2;
            co[0][0] = co[argmin][0] = xx;
            co[0][1] = co[argmin][1] = yy;
            ret.Add(new int[]{0, argmin});
        }

        long tx = O*2 - co[0][0];
        long ty = O*2 - co[0][1];

        long[][] cco = co.Skip(1).ToArray();
        long[] last = new long[0];

        Random gen = new Random();
        for(int rep = 0;rep < 10;rep++){
            double best = Double.PositiveInfinity;
            long[][] barg = new long[4][];
            Stopwatch sw = Stopwatch.StartNew();
            while(sw.ElapsedMilliseconds < 80){
                long[][] sel = cco.OrderBy(x => gen.Next()).Take(8).ToArray();
                double x = 0, y = 0;
                for(int i = 0;i < 8;i++){
                    x += sel[i][0];
                    y += sel[i][1];
                }
                x /= 8;
                y /= 8;
                double d = Math.Max(Math.Abs(x - tx), Math.Abs(y - ty));
                if(d < best){
                    best = d;
                    barg = sel;
                }
            }

            for(int d = 1;d <= 4;d*=2){
                for(int i = 0;i < 8;i+=d*2){
                    long x = (barg[i][0] + barg[i+d][0]) / 2;
                    long y = (barg[i][1] + barg[i+d][1]) / 2;
                    barg[i][0] = barg[i+d][0] = x;
                    barg[i][1] = barg[i+d][1] = y;
                    ret.Add(new int[]{(int)barg[i][2], (int)barg[i+d][2]});
                }
            }
            last = barg[0];
        }

        // Console.WriteLine($"arg {arg} {vald}");
        ret.Add(new int[]{0, (int)last[2]});

        Console.WriteLine(ret.Count);
        foreach(int[] r in ret){
            Console.WriteLine($"{r[0]+1} {r[1]+1}");
        }

        // long lx = (co[0][0] + last[0]) / 2;
        // long ly = (co[0][1] + last[1]) / 2;
        // Console.WriteLine($"last: {lx} {ly}");
    }

    static double min;
    static List<int> best = new List<int>();

    static void simulate(double[] a, int rem, List<int> route)
    {
        for(int i = 0;i < 4;i++){
            if(Math.Abs(a[i]) < min){
                min = Math.Abs(a[i]);
                best = new List<int>(route);
            }            
        }
        if(rem == 0)return;
        for(int i = 0;i < 3;i++){
            if(a[i] == a[i+1])continue;
            double[] b = (double[])a.Clone();
            double v = (b[i] + b[i+1]) / 2;
            b[i] = b[i+1] = v;
            route.Add(i);
            simulate(b, rem-1, route);
            route.RemoveAt(route.Count-1);
        }
    }

    static string ns()
    {
        return Console.ReadLine();
    }

    static int ni()
    {
        return Convert.ToInt32(ns());
    }

    static int[] na()
    {
        return ns().Split(' ').Select(int.Parse).ToArray();
    }

    static long[] nal()
    {
        return ns().Split(' ').Select(long.Parse).ToArray();
    }

    static long[][] nml(int n)
    {
        long[][] ret = new long[n][];
        for (int i = 0; i < n; i++)
        {
            long[] f = nal();
            ret[i] = new long[]{f[0], f[1], i};
        }
        return ret;
    }
}
0