結果

問題 No.365 ジェンガソート
ユーザー uafr_csuafr_cs
提出日時 2016-05-15 20:59:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 2,023 bytes
コンパイル時間 3,656 ms
コンパイル使用メモリ 79,124 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-10-12 02:18:44
合計ジャッジ時間 10,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,884 KB
testcase_01 AC 54 ms
36,748 KB
testcase_02 AC 54 ms
36,528 KB
testcase_03 AC 55 ms
36,884 KB
testcase_04 AC 54 ms
36,864 KB
testcase_05 AC 54 ms
36,616 KB
testcase_06 AC 54 ms
36,856 KB
testcase_07 AC 55 ms
37,016 KB
testcase_08 AC 54 ms
36,884 KB
testcase_09 AC 54 ms
36,936 KB
testcase_10 AC 54 ms
36,796 KB
testcase_11 AC 53 ms
36,772 KB
testcase_12 AC 54 ms
37,016 KB
testcase_13 AC 54 ms
37,008 KB
testcase_14 AC 54 ms
36,564 KB
testcase_15 AC 55 ms
37,016 KB
testcase_16 AC 206 ms
46,736 KB
testcase_17 AC 303 ms
48,336 KB
testcase_18 AC 141 ms
40,688 KB
testcase_19 AC 358 ms
48,168 KB
testcase_20 AC 243 ms
44,500 KB
testcase_21 AC 140 ms
41,236 KB
testcase_22 AC 186 ms
46,280 KB
testcase_23 AC 182 ms
44,988 KB
testcase_24 AC 188 ms
46,572 KB
testcase_25 AC 123 ms
40,840 KB
testcase_26 AC 192 ms
44,992 KB
testcase_27 AC 206 ms
46,300 KB
testcase_28 AC 197 ms
44,816 KB
testcase_29 AC 205 ms
45,796 KB
testcase_30 AC 176 ms
43,800 KB
testcase_31 AC 141 ms
41,648 KB
testcase_32 AC 131 ms
41,720 KB
testcase_33 AC 223 ms
46,380 KB
testcase_34 AC 124 ms
40,468 KB
testcase_35 AC 212 ms
46,764 KB
testcase_36 AC 384 ms
54,164 KB
testcase_37 AC 226 ms
47,984 KB
testcase_38 AC 240 ms
47,720 KB
testcase_39 AC 341 ms
50,764 KB
testcase_40 AC 340 ms
50,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.Closeable;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.PriorityQueue;
import java.util.Scanner;
import java.util.Set;
import java.util.StringTokenizer;
import java.util.TreeSet;

public class Main {
	
	public static class Data implements Comparable<Data> {
		int data, index;
		
		public Data(int data, int index){
			this.data  = data;
			this.index = index;
		}
		
		@Override public int compareTo(Data arg0){
			return Integer.compare(arg0.data, this.data);
		}
	}
	
	public static void main(String[] args) throws IOException {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();

		PriorityQueue<Data> queue = new PriorityQueue<Data>();
		for(int i = 0; i < N; i++){
			queue.add(new Data(sc.nextInt(), i));
		}
		
		TreeSet<Integer> indexes = new TreeSet<Integer>();
		while(!queue.isEmpty()){
			//System.out.println(queue);
			final Data data = queue.poll();
			
			if(indexes.lower(data.index) != null){
				System.out.println(queue.size() + 1);
				return;
			}else{
				indexes.add(data.index);
			}
		}
		
		System.out.println(0);
	}
	
	public static class Scanner implements Closeable {
		private BufferedReader br;
		private StringTokenizer tok;
 
		public Scanner(InputStream is) throws IOException {
			br = new BufferedReader(new InputStreamReader(is));
		}
 
		private void getLine() throws IOException {
			while (!hasNext()) {
				tok = new StringTokenizer(br.readLine());
			}
		}
 
		private boolean hasNext() {
			return tok != null && tok.hasMoreTokens();
		}
 
		public String next() throws IOException {
			getLine();
			return tok.nextToken();
		}
 
		public int nextInt() throws IOException {
			return Integer.parseInt(next());
		}
 
		public long nextLong() throws IOException {
			return Long.parseLong(next());
		}
 
		public void close() throws IOException {
			br.close();
		}
	}
}
0