일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- API
- java
- 장고
- HTML
- Django
- Algorithm
- javascript
- 파이썬 알고리즘
- MAC
- django ORM
- AWS
- 알고리즘 풀이
- 알고리즘 문제
- django rest framework
- react
- web
- Baekjoon
- 파이썬
- CSS
- js
- DRF
- c++
- Git
- es6
- form
- 알고리즘 연습
- PYTHON
- 알고리즘
- django widget
- 백준
Archives
- Today
- Total
수학과의 좌충우돌 프로그래밍
[C++] BAEKJOON 17968 Fire on Field (acm-icpc) 본문
https://www.acmicpc.net/problem/17968
17968번: Fire on Field
We define A as a sequence of positive integers like the following. Let A[0] = 1, A[1] = 1. For a positive integer i ≥ 2, A[i] is the smallest positive integer under the condition that no three terms A[i − 2k], A[i − k], and A[i] form an arithmetic progress
www.acmicpc.net
2019 acm icpc Seoul A번 입니다. 해당 대회의 문제 중에 제일 쉬운 문제로 단순 구현 문제입니다.
#include <iostream>
using namespace std;
int A[1001] = {1,1};
int main(int argc, const char * argv[]) {
for (int i=2;i<1001;i++){
int value = 1;
while (1){
A[i] = value;
int k=1;
while (1){
if (i-2*k<0) break;
if (A[i] - A[i-k] == A[i-k] - A[i-2*k])
break;
k++;
}
if (i-2*k<0)
break;
else
value++;
}
}
int n;
cin >> n;
cout << A[n] << "\n";
}
'알고리즘 > C++' 카테고리의 다른 글
[C++] stl container set, multiset (0) | 2020.04.14 |
---|---|
[C++] string 문자열 나누는 split (3) | 2020.03.15 |
[C++] BAEKJOON 11404 플로이드 (0) | 2019.11.10 |
[C++] BAEKJOON 11559 Puyo Puyo (0) | 2019.11.04 |
[C++] BAEKJOON 2573 빙산 (0) | 2019.11.03 |
Comments