Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[week6] 백준 10811번 문제 #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .idea/ObjectJava.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

119 changes: 119 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 48 additions & 0 deletions week6/지선의/Main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import java.util.Scanner;

class Basket {
private int[] baskets;

public Basket(int n) {
baskets = new int[n];
for (int i = 0; i < n; i++) {
baskets[i] = i + 1;
}
}

public void reverse(int start, int end) {
while (start < end) {
int temp = baskets[start];
baskets[start] = baskets[end];
baskets[end] = temp;
start++;
end--;
}
}

public void printBaskets() {
for (int basket : baskets) {
System.out.print(basket + " ");
}
}
}

public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);

int n = scanner.nextInt(); // 바구니의 개수
int m = scanner.nextInt(); // 역순으로 바꿀 횟수

Basket basket = new Basket(n);

for (int i = 0; i < m; i++) {
int start = scanner.nextInt() - 1;
int end = scanner.nextInt() - 1;
basket.reverse(start, end);
}

basket.printBaskets();
scanner.close();
}
}