티스토리 뷰
https://www.acmicpc.net/problem/2605
#include <iostream>
#include <fstream>
#include <vector>
using namespace std;
int main()
{
int s;
int tmp;
cin >> s;
vector<int> N(s);
for(int i = 0; i < s; i++) N[i] = i + 1;
for (int i = 0; i < s; i++) {
int ticket;
cin >> ticket;
int tmp2 = N[i];
for (int j = i; j > i - ticket; j--) {
N[j] = N[j - 1];
}
N[i - ticket] = tmp2;
}
cout << endl;
for (int i = 0; i < s; i++){
cout << N[i] << " ";
}
}
자리를 바꿔주는 코드는 아래 코드를 사용해도 된다
for (int i = 0; i < s; i++) {//5
int ticket;
cin >> ticket;
for (int j = 0; j < ticket; j++) {//6
int tmp = N[i];
N[i] = N[j + i - ticket ];
N[j + i - ticket ] = tmp;
}
}
'algorithm > 백준' 카테고리의 다른 글
[python] 백준 10987 (0) | 2020.11.08 |
---|---|
[python] 백준7567 그릇 (0) | 2020.10.31 |
[python] 백준10156 과자 (0) | 2020.10.31 |
[python] 백준10797 10부제 (0) | 2020.10.17 |
[python] 백준2576번 홀수 (0) | 2020.10.17 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 21758
- 백준
- 쇠막대기
- 4
- python
- 다익스트라
- 꿀따기
- forensic
- web
- c++
- 프로그레머스
- HackCTF
- 스택
- 넓이
- 👼
- programmers
- 더하기
- openCV
- boj
- 카카오 2021 블라인드 테스트
- 괄호
- 피보나치
- 2
- 나머지
- FIBO
- math
- 파이썬
- 7567
- 직업군 추천
- 1
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함