P 10866インデックス
18789 ワード
10866インデックス
タイムアウトメモリ制限回答を提出した人の回答正解率0.5秒(追加時間なし)256 MB 4264823245196956.374%
質問する
整数を格納するDequeを実行し、入力としてのコマンドを処理するプログラムを作成します.
命令は全部で8条ある.
入力
1行目に与えられるコマンド数N(1≦N≦10000).2行目からN行目までそれぞれ1つのコマンドがあります.与えられた整数は1以上であり、100000以下である.問題にない命令はない.
しゅつりょく
出力するコマンドが発行されるたびに、各行に1つのコマンドが出力されます.
入力例1
15
push_back 1
push_front 2
front
back
size
empty
pop_front
pop_back
pop_front
size
empty
pop_back
push_front 3
empty
front
サンプル出力1
2
1
2
0
2
1
-1
0
1
-1
0
3
入力例2
22
front
back
pop_front
pop_back
push_front 1
front
pop_back
push_back 2
back
pop_front
push_front 10
push_front 333
front
back
pop_back
pop_back
push_back 20
push_back 1234
front
back
pop_back
pop_back
サンプル出力2
-1
-1
-1
-1
1
1
2
2
333
10
10
333
20
1234
1234
20
コード#コード#
import java.io.*;
import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Deque;
public class P_10866 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
int n = Integer.parseInt(br.readLine());
Deque<Integer> deque = new ArrayDeque<>();
for (int i = 0; i < n; i++) {
Object[] command = Arrays.stream(br.readLine().split(" ")).toArray();
if (command[0].equals("push_front")) deque.addFirst(Integer.parseInt((String) command[1]));
else if (command[0].equals("push_back")) deque.add(Integer.parseInt((String) command[1]));
else if (command[0].equals("pop_front")) {
if (deque.isEmpty()) bw.write(-1 + "\n");
else bw.write(deque.removeFirst() + "\n");
}
else if (command[0].equals("pop_back")) {
if (deque.isEmpty()) bw.write(-1 + "\n");
else bw.write(deque.removeLast() + "\n");
}
else if (command[0].equals("size")) bw.write(deque.size() + "\n");
else if (command[0].equals("empty")) {
if (deque.isEmpty()) bw.write(1 + "\n");
else bw.write(0 + "\n");
}
else if (command[0].equals("front")) {
if (deque.isEmpty()) bw.write(-1 + "\n");
else bw.write(deque.getFirst() + "\n");
}
else {
if (deque.isEmpty()) bw.write(-1 + "\n");
else bw.write(deque.getLast() + "\n");
}
}
bw.flush();
}
}
コードの説明
Java資料構造DequeをArrayDequeとして実装する.
Reference
この問題について(P 10866インデックス), 我々は、より多くの情報をここで見つけました https://velog.io/@www_castlehi/P10866-덱テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol