250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- PyQt
- englishbook
- 알고리즘 문제
- sw expert academy
- 원서읽자
- MySQL
- 프로그래머스
- 삼성
- 직무면접
- 코테 대비
- nightroutine
- D4
- 완전탐색
- 코딩테스트
- English
- dfs
- swexpertacademy
- 코테 준비
- readingbook
- SQL
- STUDYENGLISH
- 코테
- 알고리즘
- the midnight library
- 쉬운 알고리즘 문제
- 원서
- sw expert
- 원서읽기
- 백준
- BFS
Archives
- Today
- Total
시나브로
[프로그래머스] 2 x n 타일링 본문
728x90
이 문제는 규칙을 찾는게 중요하다.
#include <string>
#include <vector>
using namespace std;
vector <int > list;
int signal = 1;
int solution(int n) {
int answer = 0;
if (signal == 1) {
list.push_back(1);
list.push_back(1);
}
int point = list.size();
while (point <= n) {
list.push_back((list[point - 1]+list[point-2])% 1000000007);
point++;
}
answer = list[n];
return answer;
}
https://programmers.co.kr/learn/courses/30/lessons/12900
728x90
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[2019 카카오 개발자 겨울 인턴십] 크레인 인형뽑기 게임 (0) | 2020.05.08 |
---|---|
[프로그래머스] 네트워크 (0) | 2020.04.26 |
[ 프로그래머스 ] 스킬트리 (0) | 2020.04.04 |
[ 프로그래머스 ] 멀쩡한 사각형 (0) | 2020.04.04 |
[ 프로그래머스 ] 124 나라의 숫자 (0) | 2020.04.04 |
Comments