結果

問題 No.461 三角形はいくつ?
ユーザー りあんりあん
提出日時 2016-12-09 13:19:31
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,508 ms / 5,000 ms
コード長 3,947 bytes
コンパイル時間 1,012 ms
コンパイル使用メモリ 117,080 KB
実行使用メモリ 102,544 KB
最終ジャッジ日時 2024-11-29 03:21:46
合計ジャッジ時間 32,155 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 368 ms
99,084 KB
testcase_01 AC 377 ms
98,956 KB
testcase_02 AC 374 ms
98,964 KB
testcase_03 AC 365 ms
97,688 KB
testcase_04 AC 374 ms
98,816 KB
testcase_05 AC 926 ms
102,428 KB
testcase_06 AC 688 ms
102,300 KB
testcase_07 AC 749 ms
102,412 KB
testcase_08 AC 621 ms
102,184 KB
testcase_09 AC 369 ms
98,976 KB
testcase_10 AC 445 ms
98,836 KB
testcase_11 AC 791 ms
102,156 KB
testcase_12 AC 552 ms
98,960 KB
testcase_13 AC 995 ms
102,284 KB
testcase_14 AC 962 ms
102,408 KB
testcase_15 AC 995 ms
102,296 KB
testcase_16 AC 412 ms
102,264 KB
testcase_17 AC 412 ms
102,272 KB
testcase_18 AC 1,507 ms
102,164 KB
testcase_19 AC 1,508 ms
102,288 KB
testcase_20 AC 988 ms
102,420 KB
testcase_21 AC 1,013 ms
102,292 KB
testcase_22 AC 999 ms
102,292 KB
testcase_23 AC 484 ms
102,376 KB
testcase_24 AC 474 ms
102,164 KB
testcase_25 AC 391 ms
102,440 KB
testcase_26 AC 392 ms
102,392 KB
testcase_27 AC 386 ms
102,292 KB
testcase_28 AC 391 ms
102,520 KB
testcase_29 AC 624 ms
102,304 KB
testcase_30 AC 499 ms
102,432 KB
testcase_31 AC 846 ms
102,316 KB
testcase_32 AC 992 ms
102,544 KB
testcase_33 AC 389 ms
102,296 KB
testcase_34 AC 393 ms
102,300 KB
testcase_35 AC 391 ms
102,524 KB
testcase_36 AC 561 ms
102,400 KB
testcase_37 AC 551 ms
102,288 KB
testcase_38 AC 556 ms
102,500 KB
testcase_39 AC 537 ms
102,280 KB
testcase_40 AC 557 ms
102,308 KB
testcase_41 AC 570 ms
102,416 KB
testcase_42 AC 937 ms
102,412 KB
testcase_43 AC 952 ms
102,524 KB
testcase_44 AC 925 ms
102,424 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;
using System.Linq.Expressions;
using System.IO;

class Program
{
    static StreamWriter sw = new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false };
    static Scan sc = new Scan();
    static void Main()
    {
        int n = sc.Int;
        var lines = new List<long[]>[3];
        var exist = new SortedSet<int>[3][];
        for (int i = 0; i < 3; i++)
        {
            lines[i] = new List<long[]>();
            lines[i].Add(new long[]{ 0, 1 });
            exist[i] = new SortedSet<int>[400000];
            for (int j = 0; j < 400000; j++)
            {
                exist[i][j] = new SortedSet<int>();
            }
        }
        for (int i = 0; i < n; i++)
        {
            var a = sc.IntArr;
            if (a[1] + a[2] > 400000) DBG("nyan");

            var g = mymath.gcd(a[1], a[2]);
            lines[a[0]].Add(new long[]{ a[2] / g, (a[1] + a[2]) / g });
            if (!exist[a[0]][a[2] / g].Add((a[1] + a[2]) / (int)g))
            {
                DBG("nyan");
            }
        }

        for (int i = 0; i < 3; i++)
            lines[i].Sort((x, y) => (x[0] * y[1]).CompareTo(y[0] * x[1]));

        if (lines[0].Count > lines[2].Count)
            swap(ref lines[0], ref lines[2]);
        if (lines[1].Count > lines[2].Count)
            swap(ref lines[1], ref lines[2]);

        long ans = 0;
        foreach (var a in lines[0])
        {
            foreach (var b in lines[1])
            {
                if (!okay(a, b)) continue;

                long s = a[0] * b[1] + a[1] * b[0], t = a[1] * b[1];
                var g = mymath.gcd(s, t);
                s /= g;
                t /= g;
                int ok = 0, ng = lines[2].Count;
                while (ok < ng - 1)
                {
                    int m = (ok + ng) >> 1;
                    var c = lines[2][m];
                    if (okay(a, c) && okay(b, c))
                        ok = m;
                    else
                        ng = m;
                }
                ans += ok + 1;
                long u = t - s;
                int l = 0, r = lines[2].Count - 1;
                while (true)
                {
                    int m = (l + r) >> 1;
                    var c = lines[2][m];
                    if (t * c[0] == u * c[1])
                    {
                        --ans;
                        break;
                    }
                    if (l >= r) break;

                    if (t * c[0] < u * c[1])
                        l = m + 1;
                    else
                        r = m - 1;
                }
            }
        }
        sw.WriteLine(ans);
        sw.Flush();
    }
    static bool okay(long[] a, long[] b) => a[0] * b[1] + a[1] * b[0] <= a[1] * b[1];
    static void swap<T>(ref T a, ref T b) { var t = a; a = b; b = t; }
    static void DBG<T>(params T[] a) => Console.WriteLine(string.Join(" ", a));
    static void DBG(params object[] a) => Console.WriteLine(string.Join(" ", a));
}
class Scan
{
    public int Int => int.Parse(Str);
    public long Long => long.Parse(Str);
    public double Double => double.Parse(Str);
    public string Str => Console.ReadLine().Trim();
    public int[] IntArr => StrArr.Select(int.Parse).ToArray();
    public long[] LongArr => StrArr.Select(long.Parse).ToArray();
    public double[] DoubleArr => StrArr.Select(double.Parse).ToArray();
    public string[] StrArr => Str.Split();
}
class mymath
{
    public static long gcd(long a, long b)
    {
        while (b > 0) { var t = a % b; a = b; b = t; }
        return a;
    }
    // a x + b y = gcd(a, b)
    public static long extgcd(long a, long b, out long x, out long y)
    {
        long g = a; x = 1; y = 0;
        if (b > 0) { g = extgcd(b, a % b, out y, out x); y -= a / b * x; }
        return g;
    }
    public static long lcm(long a, long b) => a / gcd(a, b) * b;
}
0