結果

問題 No.905 Sorted?
ユーザー FromBooskaFromBooska
提出日時 2023-04-04 15:06:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 1,118 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 102,236 KB
最終ジャッジ日時 2024-10-01 07:23:59
合計ジャッジ時間 5,259 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,956 KB
testcase_01 AC 40 ms
54,680 KB
testcase_02 AC 39 ms
53,124 KB
testcase_03 AC 37 ms
52,556 KB
testcase_04 AC 36 ms
53,536 KB
testcase_05 AC 54 ms
66,476 KB
testcase_06 AC 49 ms
63,056 KB
testcase_07 AC 67 ms
73,348 KB
testcase_08 AC 297 ms
87,820 KB
testcase_09 AC 224 ms
85,704 KB
testcase_10 AC 272 ms
97,964 KB
testcase_11 AC 288 ms
94,828 KB
testcase_12 AC 318 ms
93,216 KB
testcase_13 AC 292 ms
92,576 KB
testcase_14 AC 304 ms
98,060 KB
testcase_15 AC 335 ms
101,364 KB
testcase_16 AC 317 ms
102,236 KB
testcase_17 AC 325 ms
102,056 KB
testcase_18 AC 272 ms
102,148 KB
testcase_19 AC 36 ms
52,752 KB
testcase_20 AC 34 ms
52,240 KB
testcase_21 AC 35 ms
52,304 KB
testcase_22 AC 37 ms
52,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# セグメントツリーで通ったが公式解説はスマート
# 累積和を2つ用意する、広義増加と広義減少
# 広義増加を満たしていれば+1していく累積和
# 範囲差と累積和差が等しければ1
# 2つの問題があるので、同時に解かずに別々に解くイメージ

N = int(input())
A = list(map(int, input().split()))
B_increase = []
for i in range(N):
    if i == 0:
        B_increase.append(1)
    else:
        if A[i] >= A[i-1]:
            B_increase.append(B_increase[-1]+1)
        else:
            B_increase.append(B_increase[-1])
B_decrease = []
for i in range(N):
    if i == 0:
        B_decrease.append(1)
    else:
        if A[i] <= A[i-1]:
            B_decrease.append(B_decrease[-1]+1)
        else:
            B_decrease.append(B_decrease[-1])
            
#print(B_increase)
#print(B_decrease)

Q = int(input())
for q in range(Q):
    l, r = map(int, input().split())
    ans1 = 0
    if B_increase[r]-B_increase[l] == r-l:
        ans1 = 1
    ans2 = 0
    if B_decrease[r]-B_decrease[l] == r-l:
        ans2 = 1    
    print(ans1, ans2)
0