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
- c++
- Unreal Engine 5
- 시뮬레이션
- XR Interaction Toolkit
- 다이나믹 프로그래밍
- 투 포인터
- 유니온 파인드
- 수학
- 트리
- 알고리즘
- ue5
- VR
- 문자열
- 스택
- DFS
- BFS
- 다익스트라
- 브루트포스
- 유니티
- 백트래킹
- 그래프
- 그리디 알고리즘
- 백준
- 구현
- 누적 합
- 자료구조
- 재귀
- Team Fortress 2
- 우선순위 큐
- 정렬
Archives
- Today
- Total
1일1알
백준 2866번 문자열 잘라내기 C++ 본문
https://www.acmicpc.net/problem/2866
루프마다 문자열을 새로 만들면 시간초과가 나서 처음에 전체 문자열을 만들고 substr로 구함
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int r, c;
vector<vector<char>> table;
vector<string> strs;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> r >> c;
table = vector<vector<char>>(r, vector<char>(c));
strs = vector<string>(c, "");
for (int i = 0; i < r; i++) {
for (int j = 0; j < c; j++) {
cin >> table[i][j];
}
}
for (int j = 0; j < c; j++) {
for (int i = 0; i < r; i++) {
strs[j] += table[i][j];
}
}
bool repeat = true;
int ans = 0;
for (int i = 1; i < r; i++) {
set<string> s;
for (int j = 0; j < c; j++) {
string str = strs[j].substr(i, r);
s.insert(str);
}
if (s.size() != c) {
break;
}
ans++;
}
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 13565번 침투 C++ (0) | 2023.01.25 |
---|---|
백준 2784번 가로 세로 퍼즐 C++ (0) | 2023.01.24 |
백준 1138번 한 줄로 서기 C++ (0) | 2023.01.19 |
백준 26215번 눈 치우기 C++ (0) | 2023.01.18 |
백준 14940번 쉬운 최단거리 C++ (0) | 2023.01.17 |