[이득우의 언리얼 프로그래밍 Part1 - 언리얼 C++의 이해] 강의 시작 - 0
강의를 시작하며 요새 유니티로 프로젝트를 하며 게임 개발자로 느끼는 점은 ‘더 성장하기 위해 언리얼을 배우고 싶다’였다. 요새 대기업 뿐만 아니라 다른 회사들도 언리얼을 사용할 수 있는 사람을 선호한다고 듣기도 했고 여하튼 언리얼이 강세인 것은 분명하다. 그래서 언제하지 언제하지 하다가 동아리 브릿지에서 들어간 취업 스터디에서 언리얼 소모임을 만들기로...
강의를 시작하며 요새 유니티로 프로젝트를 하며 게임 개발자로 느끼는 점은 ‘더 성장하기 위해 언리얼을 배우고 싶다’였다. 요새 대기업 뿐만 아니라 다른 회사들도 언리얼을 사용할 수 있는 사람을 선호한다고 듣기도 했고 여하튼 언리얼이 강세인 것은 분명하다. 그래서 언제하지 언제하지 하다가 동아리 브릿지에서 들어간 취업 스터디에서 언리얼 소모임을 만들기로...
문제 난이도 : 골드 4 백준 16434번 : 드래곤 앤 던전 코드 #include <bits/stdc++.h> typedef long long ll; using namespace std; ll N, atk; struct Room { int t, a, h; }; vector<Room> v; bool Check...
문제 난이도 : 실버 2 백준 6236번 : 용돈 관리 코드 #include <bits/stdc++.h> using namespace std; int N, M; int arr[100004]; int mx = 0; bool check(int money) { if (money < mx) return false; ...
문제 난이도 : 골드 5 백준 2170번 : 선 긋기 코드 #include <bits/stdc++.h> using namespace std; int N; vector<pair<int, int>> v; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL...
문제 난이도 : 골드 2 백준 17822번 : 원판 돌리기 코드 #include <bits/stdc++.h> using namespace std; int N, M, T; vector<int> board[54]; // 원판 set<pair<int, int>> s; void Rotate(int ...
문제 난이도 : 골드 1 백준 17143번 : 낚시왕 코드 #include <bits/stdc++.h> using namespace std; int arr[104][104]; // 격자판, 각 칸은 상어가 몇 마리 있는 지를 의미한다. int R, C, M; int fisher = 0; // 낚시왕의 현재 열 위치 // 방향벡터 ...
문제 난이도 : 실버 1 백준 14888번 : 연산자 끼워넣기 코드 #include <bits/stdc++.h> using namespace std; int N; vector<int> v; vector<int> op; int answer_max = INT_MIN; int answer_min = INT_MAX; ...
문제 난이도 : 골드 5 백준 1911번 : 흙길 보수하기 코드 #include <bits/stdc++.h> using namespace std; int N, L; vector<pair<int, int>> v; int main() { cin >> N >> L; int nul ...
문제 난이도 : 골드 4 백준 3190번 : 뱀! 코드 #include <bits/stdc++.h> using namespace std; int N, K, L; int arr[104][104]; int dy[] = { -1, 0, 1, 0 }; int dx[] = { 0, 1, 0, -1 }; struct Snake { ve...
문제 난이도 : 골드 4 백준 17144번 : 미세먼지 안녕! 코드 #include <bits/stdc++.h> using namespace std; int R, C, T; int arr[54][54]; int arr2[54][54]; int dy[] = { -1, 0, 1, 0 }; int dx[] = { 0, 1, 0, -1 };...