結果
問題 | No.878 Range High-Element Query |
ユーザー | keymoon |
提出日時 | 2019-09-06 22:44:35 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,725 bytes |
コンパイル時間 | 3,315 ms |
コンパイル使用メモリ | 117,180 KB |
実行使用メモリ | 46,484 KB |
最終ジャッジ日時 | 2024-06-24 20:16:56 |
合計ジャッジ時間 | 7,163 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
27,316 KB |
testcase_01 | AC | 48 ms
28,080 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 47 ms
26,284 KB |
testcase_05 | AC | 47 ms
26,424 KB |
testcase_06 | AC | 45 ms
25,916 KB |
testcase_07 | AC | 44 ms
26,168 KB |
testcase_08 | AC | 47 ms
28,076 KB |
testcase_09 | AC | 47 ms
28,080 KB |
testcase_10 | AC | 35 ms
25,524 KB |
testcase_11 | AC | 544 ms
42,960 KB |
testcase_12 | WA | - |
testcase_13 | AC | 409 ms
42,344 KB |
testcase_14 | AC | 309 ms
39,404 KB |
testcase_15 | WA | - |
testcase_16 | AC | 664 ms
42,200 KB |
testcase_17 | AC | 701 ms
44,708 KB |
testcase_18 | AC | 685 ms
46,484 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.IO; using System.Net; using System.Net.Sockets; using System.Linq; using System.Collections; using System.Collections.Generic; using System.Text; using System.Numerics; using System.Threading.Tasks; using System.Text.RegularExpressions; using static System.Math; using MethodImplOptions = System.Runtime.CompilerServices.MethodImplOptions; using MethodImplAttribute = System.Runtime.CompilerServices.MethodImplAttribute; public static class P { public static void Main() { var nq = Console.ReadLine().Split().Select(int.Parse).ToArray(); var n = nq[0]; var q = nq[1]; var a = Console.ReadLine().Split().Select(int.Parse).ToArray(); //Mo var shiftRange = 8; var res = new int[q]; var queries = Enumerable.Range(0, q).Select(Index => new { Index, Elem = Query.Parse(Console.ReadLine()) }).ToArray(); foreach (var query in queries.Where(x => (1 << shiftRange) >= x.Elem.Length)) { int count = 0; int curMax = 0; for (int i = query.Elem.L; i <= query.Elem.R; i++) { if (curMax < a[i]) { curMax = a[i]; count++; } } res[query.Index] = count; } foreach (var chunk in queries.Where(x => (1 << shiftRange) < x.Elem.Length).GroupBy(x => x.Elem.L >> shiftRange)) { List<int> highCand = new List<int>(); var chunkEnd = Min(q, (chunk.Key + 1) << shiftRange); highCand.Add(-1); var curInd = chunkEnd; foreach (var query in chunk.OrderBy(x => x.Elem.R)) { while (curInd <= query.Elem.R) { if (highCand.Last() < a[curInd]) highCand.Add(a[curInd]); curInd++; } int count = 0; int curMax = 0; for (int i = query.Elem.L; i < chunkEnd; i++) { if (curMax < a[i]) { curMax = a[i]; count++; } } res[query.Index] = count + highCand.Count - (~highCand.BinarySearch(curMax)); } } Console.WriteLine(string.Join("\n", res)); } } struct Query { public int L; public int R; public int Length => R - L + 1; public static Query Parse(string s) { var qlr = s.Split().Select(int.Parse).ToArray(); return new Query() { L = qlr[1] - 1, R = qlr[2] - 1, }; } }