結果

問題 No.461 三角形はいくつ?
ユーザー りあんりあん
提出日時 2016-12-08 02:04:05
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,899 ms / 5,000 ms
コード長 3,294 bytes
コンパイル時間 2,206 ms
コンパイル使用メモリ 109,748 KB
実行使用メモリ 23,812 KB
最終ジャッジ日時 2023-08-19 11:13:15
合計ジャッジ時間 26,395 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
23,672 KB
testcase_01 AC 55 ms
21,704 KB
testcase_02 AC 56 ms
21,672 KB
testcase_03 AC 51 ms
22,752 KB
testcase_04 AC 59 ms
21,676 KB
testcase_05 AC 555 ms
21,672 KB
testcase_06 AC 322 ms
23,612 KB
testcase_07 AC 380 ms
21,624 KB
testcase_08 AC 280 ms
23,600 KB
testcase_09 AC 58 ms
19,668 KB
testcase_10 AC 125 ms
21,732 KB
testcase_11 AC 431 ms
23,740 KB
testcase_12 AC 244 ms
21,628 KB
testcase_13 AC 630 ms
21,820 KB
testcase_14 AC 596 ms
21,620 KB
testcase_15 AC 622 ms
21,616 KB
testcase_16 AC 84 ms
21,712 KB
testcase_17 AC 87 ms
23,676 KB
testcase_18 AC 1,056 ms
21,672 KB
testcase_19 AC 1,074 ms
21,616 KB
testcase_20 AC 622 ms
23,660 KB
testcase_21 AC 606 ms
21,704 KB
testcase_22 AC 598 ms
23,764 KB
testcase_23 AC 154 ms
21,636 KB
testcase_24 AC 143 ms
23,620 KB
testcase_25 AC 1,436 ms
21,740 KB
testcase_26 AC 1,432 ms
23,764 KB
testcase_27 AC 64 ms
21,552 KB
testcase_28 AC 63 ms
23,664 KB
testcase_29 AC 1,841 ms
21,620 KB
testcase_30 AC 1,875 ms
21,712 KB
testcase_31 AC 1,899 ms
21,816 KB
testcase_32 AC 1,668 ms
21,724 KB
testcase_33 AC 62 ms
21,636 KB
testcase_34 AC 64 ms
21,552 KB
testcase_35 AC 62 ms
21,628 KB
testcase_36 AC 227 ms
21,744 KB
testcase_37 AC 207 ms
21,684 KB
testcase_38 AC 215 ms
21,616 KB
testcase_39 AC 197 ms
23,736 KB
testcase_40 AC 226 ms
21,708 KB
testcase_41 AC 214 ms
23,812 KB
testcase_42 AC 550 ms
23,608 KB
testcase_43 AC 632 ms
21,612 KB
testcase_44 AC 550 ms
19,640 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];
        for (int i = 0; i < 3; i++)
        {
            lines[i] = new List<long[]>();
            lines[i].Add(new long[]{ 0, 1 });
        }
        for (int i = 0; i < n; i++)
        {
            var a = sc.IntArr;
            var g = mymath.gcd(a[1], a[2]);
            lines[a[0]].Add(new long[]{ a[2] / g, (a[1] + a[2]) / g });
        }
        for (int i = 0; i < 3; i++)
            lines[i].Sort((x, y) => (x[0] * y[1]).CompareTo(y[0] * x[1]));

        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 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