티스토리 뷰
공주구하기
<정답 코드>
#include <iostream>
#include <vector>
#include <algorithm>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main() {
//freopen("input.txt", "rt", stdin);
int n, k, i, pos=0, bp=0, cnt=0;
scanf("%d %d", &n, &k);
vector<int> prince(n+1);
while(1){
pos++;
if(pos>n) pos=1;
if(prince[pos]==0){
cnt++;
if(cnt==k){
prince[pos]=1;
cnt=0;
bp++;
}
}
if(bp==n-1) break;
}
for(i=1; i<=n; i++){
if(prince[i]==0){
printf("%d ", i);
break;
}
}
return 0;
}
<내가푼코드>
#include <iostream>
#include <vector>
#include <algorithm>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main() {
freopen("input.txt", "rt", stdin);
int n, k, i, j, cnt, res;
scanf("%d %d", &n, &k);
vector<int> a(n+1);
for(i=1; i<=n; i++){
a[i]=i;
}
j=0;
i=0;
cnt=1;
while(cnt<=n){
if(i>n){
i=1;
}else {
i++;
}
if(a[i]!=0){
j++;
}
if(j==k){
cnt++;
res=a[i];
a[i]=0;
j=0;
}
}
printf("%d ", res);
return 0;
}
멀티태스킹
<내가짠것>
#include <iostream>
#include <vector>
#include <algorithm>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main() {
freopen("input.txt", "rt", stdin);
int n, k, i, res, pos=0, bp=0, cnt=0, chk=0;
scanf("%d", &n);
vector<int> a(n+1);
for(i=1; i<=n; i++){
scanf("%d ", &a[i]);
}
scanf("%d", &k);
i=0;
pos=0;
while(1){
i++;
printf("\ni: %d, ", i);
if(pos==n){
pos=0;
}
while(1){
pos++;
printf("pos: %d, ", pos);
if(a[pos]!=0){
a[pos]--;
printf("a[pos]: %d, ", a[pos]);
break;
}else {
if(pos==n){
break;
}
}
}
if(i==k) {
res=pos;
break;
}
}
if(a[n]==0) res=-1;
printf("%d ", res);
return 0;
}
#include <iostream>
#include <vector>
#include <algorithm>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main() {
//freopen("input.txt", "rt", stdin);
int n, k, i, res, pos=0, bp=0, cnt=0, tot=0;
scanf("%d", &n);
vector<int> a(n+1);
for(i=1; i<=n; i++){
scanf("%d ", &a[i]);
tot+=a[i];
}
scanf("%d", &k);
if(tot<=k) {
printf("-1");
return 0;
}
pos=0;
while(1){
pos++;
if(pos>n){
pos=1;
}
if(a[pos]==0) continue;
a[pos]--;
cnt++;
if(cnt==k) break;
}
while(1){
pos++;
if(pos>n) pos=1;
if(a[pos]!=0) break;
}
printf("%d ", pos);
return 0;
}
'lecture > algorithm - c++' 카테고리의 다른 글
[c++] 영지선택 small, large (0) | 2020.12.30 |
---|---|
[c++] 블록의 최대값 (0) | 2020.12.29 |
[c++] 봉우리, 각 행의 평균과 가장 가까운 값 (0) | 2020.12.29 |
[c++] 뮤직비디오, 마구간 정하기 (0) | 2020.12.26 |
[c++] scanf("%d %d", &a, &b)와 scanf("%d %d\n", &a, &b)차이 (0) | 2020.12.26 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 소프트웨어
- Stack
- 세마포어
- server side rendering
- 병행프로세스
- 구조체
- dfs
- 운영체제
- stackframe
- 인접행렬
- 동적프로그래밍
- 스텍
- C++
- 배열
- 재귀함수
- 입출력장치
- 교착상태
- 인접리스트
- react
- BFS
- 알고리즘
- C
- Java
- 클래스
- 이진탐색
- 최단경로
- 퀵정렬
- client side rendering
- 자료구조
- javascript
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함