結果

問題 No.449 ゆきこーだーの雨と雪 (4)
ユーザー eitahoeitaho
提出日時 2016-12-03 15:25:52
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 332 ms / 5,000 ms
コード長 4,614 bytes
コンパイル時間 1,039 ms
コンパイル使用メモリ 116,664 KB
実行使用メモリ 59,296 KB
最終ジャッジ日時 2024-09-22 10:31:41
合計ジャッジ時間 13,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
26,832 KB
testcase_01 AC 38 ms
28,896 KB
testcase_02 AC 36 ms
26,576 KB
testcase_03 AC 39 ms
26,708 KB
testcase_04 AC 39 ms
27,220 KB
testcase_05 AC 38 ms
24,504 KB
testcase_06 AC 38 ms
26,884 KB
testcase_07 AC 39 ms
26,956 KB
testcase_08 AC 39 ms
28,800 KB
testcase_09 AC 38 ms
28,932 KB
testcase_10 AC 39 ms
28,872 KB
testcase_11 AC 39 ms
27,052 KB
testcase_12 AC 274 ms
48,192 KB
testcase_13 AC 317 ms
52,580 KB
testcase_14 AC 284 ms
47,664 KB
testcase_15 AC 332 ms
49,280 KB
testcase_16 AC 305 ms
49,504 KB
testcase_17 AC 303 ms
51,984 KB
testcase_18 AC 275 ms
48,036 KB
testcase_19 AC 286 ms
47,544 KB
testcase_20 AC 281 ms
49,300 KB
testcase_21 AC 328 ms
50,436 KB
testcase_22 AC 329 ms
52,792 KB
testcase_23 AC 273 ms
48,280 KB
testcase_24 AC 308 ms
51,876 KB
testcase_25 AC 247 ms
46,504 KB
testcase_26 AC 224 ms
42,808 KB
testcase_27 AC 318 ms
50,404 KB
testcase_28 AC 326 ms
52,492 KB
testcase_29 AC 285 ms
47,536 KB
testcase_30 AC 332 ms
53,016 KB
testcase_31 AC 328 ms
52,536 KB
testcase_32 AC 284 ms
51,348 KB
testcase_33 AC 312 ms
51,784 KB
testcase_34 AC 257 ms
46,892 KB
testcase_35 AC 327 ms
53,444 KB
testcase_36 AC 256 ms
48,560 KB
testcase_37 AC 308 ms
57,100 KB
testcase_38 AC 262 ms
53,536 KB
testcase_39 AC 245 ms
53,420 KB
testcase_40 AC 250 ms
53,664 KB
testcase_41 AC 301 ms
53,396 KB
testcase_42 AC 295 ms
55,320 KB
testcase_43 AC 250 ms
49,456 KB
testcase_44 AC 286 ms
51,492 KB
testcase_45 AC 307 ms
59,296 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.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Collections.Generic;
using System.Diagnostics;
using System.Numerics;
using Enu = System.Linq.Enumerable;

public class Program
{
    public void Solve()
    {
        int NP = Reader.Int();
        var P = Reader.IntArray(NP);
        int Q = Reader.Int();
        var table = Reader.StringTable(Q);

        var nameId = new Dictionary<string, int>();
        foreach (var t in table)
            if (!nameId.ContainsKey(t[0]))
                nameId[t[0]] = nameId.Count;
        int N = nameId.Count;

        var scoreSet = new SortedSet<long>();
        scoreSet.Add(0);
        var scoreAt = new long[Q];
        var score = new long[N];
        var solved = new int[26];
        var dic = new Dictionary<long, int>();
        dic[0] = N;
        Action<long> Add = x => dic[x] = dic.ContainsKey(x) ? dic[x] + 1 : 1;

        for (int qi = 0; qi < Q; qi++)
            if (table[qi][1] != "?")
            {
                int who = nameId[table[qi][0]];
                int prob = table[qi][1][0] - 'A';
                score[who] += 50 * P[prob] + 500 * P[prob] / (8 + 2 * ++solved[prob]);
                Add(score[who]);
                scoreAt[qi] = ((long)score[who] << 32) + (N - dic[score[who]]);
                scoreSet.Add(scoreAt[qi]);
            }

        int M = scoreSet.Count;
        var sorted = scoreSet.ToArray();
        var count = new BinaryIndexedTree(M);
        count.Add(0, N);
        Array.Clear(score, 0, N);

        Console.SetOut(new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false });
        for (int qi = 0; qi < Q; qi++)
        {
            int who = nameId[table[qi][0]];
            if (table[qi][1] == "?")
                Console.WriteLine(N - count.Sum(Array.BinarySearch(sorted, score[who]) - 1));
            else
            {
                count.Add(Array.BinarySearch(sorted, score[who]), -1);
                score[who] = scoreAt[qi];
                count.Add(Array.BinarySearch(sorted, score[who]), 1);
            }
        }
        Console.Out.Flush();
    }
}


class BinaryIndexedTree
{
    private readonly int N;
    private readonly int[] A;

    public BinaryIndexedTree(int N)
    {
        this.N = N + 1;
        A = new int[N + 2];
    }
    public void Add(int i, int val)
    {
        if (i < 0) return;
        for (++i; i <= N; i += i & -i) A[i] += val;
    }
    public void Update(int i, int val)
    {
        Add(i, val - (Sum(i) - Sum(i - 1)));
    }
    public int Sum(int i) // [0, i]
    {
        if (i < 0) return 0;
        int sum = 0;
        for (++i; i > 0; i &= i - 1) sum += A[i];
        return sum;
    }
    public int Sum(int L, int R) // [L, R)
    {
        return Sum(R - 1) - Sum(L - 1);
    }
}



class Entry { static void Main() { new Program().Solve(); } }
class Reader
{
    static TextReader reader = Console.In;
    static readonly char[] separator = { ' ' };
    static readonly StringSplitOptions op = StringSplitOptions.RemoveEmptyEntries;
    static string[] A = new string[0];
    static int i;
    static void Init() { A = new string[0]; }
    public static void Set(TextReader r) { reader = r; Init(); }
    public static void Set(string file) { reader = new StreamReader(file); Init(); }
    public static bool HasNext() { return CheckNext(); }
    public static string String() { return Next(); }
    public static int Int() { return int.Parse(Next()); }
    public static long Long() { return long.Parse(Next()); }
    public static double Double() { return double.Parse(Next()); }
    public static int[] IntLine() { return Array.ConvertAll(Split(Line()), int.Parse); }
    public static int[] IntArray(int N) { return Range(N, Int); }
    public static int[][] IntTable(int H) { return Range(H, IntLine); }
    public static string[] StringArray(int N) { return Range(N, Next); }
    public static string[][] StringTable(int N) { return Range(N, () => Split(Line())); }
    public static string Line() { return reader.ReadLine().Trim(); }
    public static T[] Range<T>(int N, Func<T> f) { var r = new T[N]; for (int i = 0; i < N; r[i++] = f()) ; return r; }
    static string[] Split(string s) { return s.Split(separator, op); }
    static string Next() { CheckNext(); return A[i++]; }
    static bool CheckNext()
    {
        if (i < A.Length) return true;
        string line = reader.ReadLine();
        if (line == null) return false;
        if (line == "") return CheckNext();
        A = Split(line);
        i = 0;
        return true;
    }
}
0