結果

問題 No.905 Sorted?
ユーザー yakkiyakki
提出日時 2019-10-12 01:19:50
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,588 bytes
コンパイル時間 702 ms
コンパイル使用メモリ 90,148 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-04 13:55:52
合計ジャッジ時間 4,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 193 ms
5,376 KB
testcase_16 AC 224 ms
5,376 KB
testcase_17 AC 206 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<bitset>
#include<set>
#include<map>
#include<stack>
#include<queue>
#include<deque>
#include<list>
#include<iomanip>
#include<cmath>
#include<cstring>
#include<functional>
using namespace std;

#define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++)
#define rep(i, n) repr(i, 0, n)
#define INF 2e9
#define MOD 1000000007
//#define MOD 998244353
#define LINF (long long)4e18
#define jck 3.141592

using ll = long long;
using Pi = pair<int,int>;
using Pl = pair<ll,ll>;

int main(){
    int N; cin >> N;
    vector<ll> A(N);
    rep(i,N) cin >> A[i];
    vector<int> s(N);
    s[0] = 2;
    repr(i,1,N){
        if(A[i] == A[i-1]) s[i] = 2;
        else if(A[i] > A[i-1]) s[i] = 1;
        else s[i] = 0;
    }
    int Q; cin >> Q;
    while(Q--){
        int l,r; cin >> l >> r;
        if(l == r){
            cout << 1 << " " << 1 << endl;
        }
        else{
            if(s[l+1] == 0){
                if(s[r] == 1){
                    cout << 0 << " " << 0 << endl;
                }
                else cout << 0 << " " << 1 << endl;
            }
            else if(s[l+1] == 1){
                if(s[r] == 0){
                    cout << 0 << " " << 0 << endl;
                }
                else cout << 1 << " " << 0 << endl;
            }
            else{
                if(s[r] == 0) cout << 0 << " " << 1 << endl;
                else if(s[r] == 1) cout << 1 << " " << 0 << endl;
                else cout << 1 << " " << 1 << endl;
            }
        }
        
    }

}
0