結果
問題 | No.318 学学学学学 |
ユーザー | eitaho |
提出日時 | 2015-12-11 00:32:12 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,648 bytes |
コンパイル時間 | 1,990 ms |
コンパイル使用メモリ | 109,312 KB |
実行使用メモリ | 39,552 KB |
最終ジャッジ日時 | 2024-09-15 07:46:09 |
合計ジャッジ時間 | 6,337 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
27,252 KB |
testcase_01 | AC | 56 ms
23,516 KB |
testcase_02 | AC | 61 ms
24,324 KB |
testcase_03 | AC | 52 ms
22,696 KB |
testcase_04 | AC | 57 ms
23,816 KB |
testcase_05 | AC | 158 ms
39,552 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
コンパイルメッセージ
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.Linq; using System.Text; using System.Collections.Generic; using System.Diagnostics; using System.Numerics; using Enu = System.Linq.Enumerable; class Program { public void Solve() { int N = Reader.Int(); var A = Reader.IntArray(N); var sorted = A.ToArray(); Array.Sort(sorted); var id = A.Select(a => Array.BinarySearch(sorted, a)).ToArray(); int[] L = Enu.Repeat(N, N).ToArray(); int[] R = Enu.Repeat(-1, N).ToArray(); for (int i = 0; i < N; i++) { int v = id[i]; L[v] = Math.Min(L[v], i); R[v] = Math.Max(R[v], i); } int[] ans = new int[N]; for (int i = 0; i < N; i++) for (int x = L[i]; x <= R[i]; x++) ans[x] = Math.Max(ans[x], sorted[i]); Console.WriteLine(string.Join(" ", ans)); } } class Entry { static void Main() { new Program().Solve(); } } class Reader { private static TextReader reader = Console.In; private static readonly char[] separator = { ' ' }; private static readonly StringSplitOptions op = StringSplitOptions.RemoveEmptyEntries; private static string[] A = new string[0]; private static int i; private 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 Enu.Range(0, N).Select(i => Int()).ToArray(); } public static int[][] IntTable(int H) { return Enu.Range(0, H).Select(i => IntLine()).ToArray(); } public static string[] StringArray(int N) { return Enu.Range(0, N).Select(i => Next()).ToArray(); } public static string Line() { return reader.ReadLine().Trim(); } private static string[] Split(string s) { return s.Split(separator, op); } private static string Next() { CheckNext(); return A[i++]; } private 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; } }