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
- 백준
- objtofbx
- 1967번
- 비재귀셰그먼트
- 의미와 무의미의 경계에서
- UActor
- 민겸수
- 언리얼 플러그인
- 데이터베이스 배움터
- oracle
- 셰그먼트트리
- hackerank
- FBX
- 5639
- Security
- SQL
- 트랜잭션 관리
- 1759번
- 2단계로킹
- OS
- UnrealMP
- command not found
- C++
- Linux
- 백준 1253번
- 언리얼 커스텀 플러그인
- 1253번
- 실습
- 오손데이터읽기
- Unreal
Archives
- Today
- Total
fatalite
프로그래머스 C++ 삼각 달팽이 본문
#include <string>
#include <vector>
#include <iostream>
using namespace std;
vector<int> solution(int n) {
int now = 1;
vector<vector<int>> snale = vector<vector<int>>();
// 2차원 배열
for(int i = 1 ; i <= n; i ++)
{
vector<int> line = vector<int>();
for(int j = 1; j <= i; j++)
{
line.push_back(-1);
}
snale.push_back(line);
}
for(int i = 0; i < n; i++)
{
if(i % 3 == 0)
{
for(int j = 0; j < n - i; j++)
{
snale[j+2*(i/3)][(i/3)] = now;
now++;
}
}
else if(i % 3 == 1)
{
for(int j = 0; j < n - i; j++)
{
snale[(n-1) - (i/3)][j+1 + (i/3)] = now;
now++;
}
}
else if(i % 3 == 2)
{
for(int j = 0; j < n - i; j++)
{
snale[(n-1) - (i/3) - j - 1 ][(n-1) - 2* (i/3) - j - 1 ] = now;
now++;
}
}
}
// 일자형으로 변환
vector<int> answer;
for(vector<int> line : snale)
{
for(int a : line)
{
answer.push_back(a);
}
}
return answer;
}
'코딩 인터뷰 > C++' 카테고리의 다른 글
프로그래머스 n진수 게임 (0) | 2024.10.01 |
---|---|
프로그래머스 - 괄호 변환 (0) | 2024.09.29 |
구간 합 구하기 - 2042번 백준 (0) | 2023.10.01 |
🏳 겹치는 건 싫어 - 20922번 백준 (2) | 2023.09.16 |
섬의 개수 - 4963번 백준 (0) | 2023.09.16 |