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 | 31 |
Tags
- VR
- 시뮬레이션
- 자료구조
- 다이나믹 프로그래밍
- 유니티
- 재귀
- 그래프
- 스택
- 유니온 파인드
- ue5
- XR Interaction Toolkit
- 브루트포스
- 트리
- BFS
- 문자열
- 그리디 알고리즘
- 정렬
- 백준
- Team Fortress 2
- 수학
- 백트래킹
- 다익스트라
- 누적 합
- 알고리즘
- 투 포인터
- 우선순위 큐
- 구현
- Unreal Engine 5
- c++
- DFS
Archives
- Today
- Total
목록브루트포스 (55)
1일1알

간단한 브루트포스 문제이다. 모든 칸을 돌면서 오른쪽, 아래쪽으로만 검사하면서 정사각형이 되는지 확인하고 크기가 커질때마다 크기를 갱신해주었다. #include #include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long ll; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n, m; cin >> n >> m; string str; vector v(n, vector(m)); for (int i = 0; i >..
알고리즘
2021. 10. 21. 12:21