結果
問題 | No.905 Sorted? |
ユーザー | kitakitalily |
提出日時 | 2019-10-11 22:02:23 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,040 ms / 2,000 ms |
コード長 | 5,116 bytes |
コンパイル時間 | 2,290 ms |
コンパイル使用メモリ | 77,916 KB |
実行使用メモリ | 69,332 KB |
最終ジャッジ日時 | 2024-11-25 07:29:15 |
合計ジャッジ時間 | 13,682 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
49,956 KB |
testcase_01 | AC | 61 ms
50,116 KB |
testcase_02 | AC | 58 ms
49,664 KB |
testcase_03 | AC | 58 ms
50,048 KB |
testcase_04 | AC | 58 ms
49,960 KB |
testcase_05 | AC | 99 ms
50,940 KB |
testcase_06 | AC | 69 ms
50,092 KB |
testcase_07 | AC | 143 ms
52,024 KB |
testcase_08 | AC | 752 ms
55,892 KB |
testcase_09 | AC | 683 ms
57,432 KB |
testcase_10 | AC | 741 ms
57,428 KB |
testcase_11 | AC | 816 ms
64,876 KB |
testcase_12 | AC | 1,040 ms
69,332 KB |
testcase_13 | AC | 767 ms
61,272 KB |
testcase_14 | AC | 818 ms
65,556 KB |
testcase_15 | AC | 925 ms
65,024 KB |
testcase_16 | AC | 902 ms
63,200 KB |
testcase_17 | AC | 872 ms
59,796 KB |
testcase_18 | AC | 794 ms
63,220 KB |
testcase_19 | AC | 53 ms
49,968 KB |
testcase_20 | AC | 54 ms
49,552 KB |
testcase_21 | AC | 53 ms
49,856 KB |
testcase_22 | AC | 54 ms
49,968 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { static long mod = 1000000007; static int INF = 1000000000; public static void main(String[] args){ FastScanner scanner = new FastScanner(); int n = scanner.nextInt(); long[] a = new long[n]; for(int i = 0; i < n; i++){ a[i] = scanner.nextLong(); } int[] ulen = new int[n]; //ulen[i]:=i番目の値から単調増加である長さ int[] dlen = new int[n]; //dlen[i]:=i番目の値から単調現象である長さ int cnt = 1; ulen[n-1] = 1; for(int i = n-1; i >= 1; i--){ if(a[i-1] <= a[i]){ cnt++; ulen[i-1] = cnt; }else{ cnt = 1; ulen[i-1] = cnt; } } dlen[n-1] = 1; for(int i = n-1; i >= 1; i--){ if(a[i-1] >= a[i]){ cnt++; dlen[i-1] = cnt; }else{ cnt = 1; dlen[i-1] = cnt; } } int q = scanner.nextInt(); for(int query = 0; query < q; query++){ int l = scanner.nextInt(); int r = scanner.nextInt(); if(l+ulen[l]-1 >= r){ System.out.print(1+ " "); }else{ System.out.print(0 + " "); } if(l+dlen[l]-1 >= r){ System.out.print(1 + " ") ; }else{ System.out.print(0 + " "); } System.out.println(); } } static class BIT{ int n; int[] bit; public BIT(int n){ this.n = n; bit = new int[n+1]; } void add(int idx, int val){ for(int i = idx+1; i <= n; i += i&(-i)) bit[i-1] += val; } int sum(int idx){ int res = 0; for(int i = idx+1; i > 0; i -= i&(-i)) res += bit[i-1]; return res; } int sum(int begin, int end){ if(begin == 0) return sum(end); return sum(end)-sum(begin-1); } } static class Pair implements Comparable<Pair>{ int first, second; Pair(int a, int b){ first = a; second = b; } @Override public boolean equals(Object o){ if (this == o) return true; if (!(o instanceof Pair)) return false; Pair p = (Pair) o; return first == p.first && second == p.second; } @Override public int compareTo(Pair p){ return first == p.first ? second - p.second : first - p.first; //firstで昇順にソート //return (first == p.first ? second - p.second : first - p.first) * -1; //firstで降順にソート //return second == p.second ? first - p.first : second - p.second;//secondで昇順にソート //return (second == p.second ? first - p.first : second - p.second)*-1;//secondで降順にソート //return first * 1.0 / second > p.first * 1.0 / p.second ? 1 : -1; // first/secondの昇順にソート //return first * 1.0 / second < p.first * 1.0 / p.second ? 1 : -1; // first/secondの降順にソート //return second * 1.0 / first > p.second * 1.0 / p.first ? 1 : -1; // second/firstの昇順にソート //return second * 1.0 / first < p.second * 1.0 / p.first ? 1 : -1; // second/firstの降順にソート //return Math.atan2(second, first) > Math.atan2(p.second, p.first) ? 1 : -1; // second/firstの昇順にソート //return first + second > p.first + p.second ? 1 : -1; //first+secondの昇順にソート //return first + second < p.first + p.second ? 1 : -1; //first+secondの降順にソート //return first - second < p.first - p.second ? 1 : -1; //first-secondの降順にソート } } private static class FastScanner { private final InputStream in = System.in; private final byte[] buffer = new byte[1024]; private int ptr = 0; private int buflen = 0; private boolean hasNextByte() { if (ptr < buflen) { return true; }else{ ptr = 0; try { buflen = in.read(buffer); } catch (IOException e) { e.printStackTrace(); } if (buflen <= 0) { return false; } } return true; } private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;} private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;} public boolean hasNext() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++; return hasNextByte();} public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while(isPrintableChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public long nextLong() { if (!hasNext()) throw new NoSuchElementException(); long n = 0; boolean minus = false; int b = readByte(); if (b == '-') { minus = true; b = readByte(); } if (b < '0' || '9' < b) { throw new NumberFormatException(); } while(true){ if ('0' <= b && b <= '9') { n *= 10; n += b - '0'; }else if(b == -1 || !isPrintableChar(b)){ return minus ? -n : n; }else{ throw new NumberFormatException(); } b = readByte(); } } public int nextInt() { long nl = nextLong(); if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE) throw new NumberFormatException(); return (int) nl; } public double nextDouble() { return Double.parseDouble(next());} } }