結果

問題 No.905 Sorted?
ユーザー tomomo2b2tomomo2b2
提出日時 2019-10-11 21:47:54
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 1,758 bytes
コンパイル時間 821 ms
コンパイル使用メモリ 113,064 KB
実行使用メモリ 48,336 KB
最終ジャッジ日時 2024-11-25 07:13:13
合計ジャッジ時間 4,753 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;
using System.Collections.Generic;
using System.IO;

class MyClass
{
    public static void Solve()
    {
        var N = int.Parse(Console.ReadLine());
        var A = Console.ReadLine().Split().Select(long.Parse).ToArray();
        var inc = new int[N];
        var dec = new int[N];
        var left = 0;
        var count = 1;
        for (int i = 0; i < N; i++)
        {
            if (i == N - 1 || A[i] > A[i + 1])
            {
                for (int j = i; j >= left; j--)
                {
                    inc[j] = i - j + 1;
                }
                left = i + 1;
                count = 1;
            }
            else
            {
                count++;
            }
        }
        left = 0;
        count = 1;
        for (int i = 0; i < N; i++)
        {
            if (i == N - 1 || A[i] < A[i + 1])
            {
                for (int j = i; j >= left; j--)
                {
                    dec[j] = i - j + 1;
                }
                left = i + 1;
                count = 1;
            }
            else
            {
                count++;
            }
        }
        var Q = int.Parse(Console.ReadLine());
        for (int i = 0; i < Q; i++)
        {
            var input = Console.ReadLine().Split().Select(int.Parse).ToArray();
            var l = input[0];
            var r = input[1];
            var n1 = l + inc[l] > r ? 1 : 0;
            var n2 = l + dec[l] > r ? 1 : 0;
            Console.WriteLine("{0} {1}", n1, n2);
        }
    }

    public static void Main()
    {
        var sw = new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false };
        Console.SetOut(sw);
        Solve();
        Console.Out.Flush();
    }
}
0