Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[브루트포스] 9월 22일 #4

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions 9월 16일 - 브루트포스/1544.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
#include <iostream>
#include <algorithm>
#include <queue>
#include <vector>
#include <string>

using namespace std;

string makeStr(queue<char>& q) {
string str = "";
for (int i = 0; i < q.size(); i++) {
str += q.front();
q.push(q.front());
q.pop();
}
Comment on lines +11 to +15

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

p2. 같은 로직인데 조금은 더 간편히 구현 가능할 것 같아요!

시계 방향으로 회전하기 위해선, 맨 앞 한 글자를 떼서 맨 뒤에 붙여야 하네요! 이에 딱 맞는 자료구조인 큐로 문자열을 잘 가공해주셨어요!!!😄😄
큐도 좋지만, string 클래스에는 <,>,==,+ 등과 같은 연산자들을 사용할 수 있다는 것을 상기해볼까요?
또한, 문자열 일부를 지우는 함수도 있어요!
그럼, string 자체에서도 시계 방향으로 회전이 가능하겠네요!


return str;
}

int main() {

//단어의 개수
int N;
//단어의 개수 입력받기
cin >> N;

//단어들을 저장하기 위한 vector
vector<string> v;

//단어 한 줄씩 입력받기
for (int i = 0; i < N; i++) {
string s;
cin >> s;


if (v.size() == 0) {
v.push_back(s);
}
else {
queue<char> q;
//문자 비교를 위해 queue 사용

for (int k = 0; k < s.size(); k++) {
q.push(s[k]);
}

bool same = false;
//문자열이 같은지 확인하는 bool 변수

for (int j = 0; j < v.size(); j++) {
for (int k = 0; k < s.size(); k++) {
string compstr = makeStr(q);

if (compstr == v[j]) {
same = true;
break;
}

q.push(q.front());
q.pop();
}

if (same) {
break;
//같은 문자열이 queue에 있으면, vector에 문자열 추가 x
}
}

if (!same) {
v.push_back(s);
//같은 문자열이 없으면 vector에 문자열 추가!
}
Comment on lines +47 to +72

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

참고해주시면 좋을 것 같아서 남깁니다!
중복을 허용하지 않는 자료구조가 있었죠! 서로 다른 단어를 담기에 아주 적합하겠어요. 이 자료구조는 찾으려는 요소가 존재하는지 확인하는 함수도 제공되기 때문에 활용해보셔도 좋을 것 같아요! 샘플 코드로 준비했으니, 참고해주셔도 좋을 것 같습니다 🤩🤩

}
}

cout << v.size() << "\n";

return 0;
}
31 changes: 31 additions & 0 deletions 9월 16일 - 브루트포스/2858.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
//입출력을 위한 선언
#include <iostream>
using namespace std;

pair<int, int> length(int r, int b) {
int area = r + b; //타일의 넓이= 빨간 타일 개수 + 갈색 타일 개수 (타일은 1x1 크기이기 때문)
for (int i = area; i > 0; i--) { //높이의 초기값을 넓이 (즉 r+b)로 설정하고, 이를 하나씩 줄여나가며 확인하는 반복문.
if (area % i != 0) { //넓이(area)를 i(높이)로 나눈 값의 나머지가 0이 아니면, 즉 i로 나누어떨어지지 않는다면, 이는 직사각형이 아니라는 뜻
continue; //직사각형이 아니라면 넘어간다.
}
//area가 i로 나누어떨어진다면, 직사각형이라는 의미이므로,
int w = area / i; // area=width(w)*height(l). 즉, i는 높이의 값 height(l).
if (r == ((i + w) * 2 - 4)) { // '빨간 타일 r = 가장자리에 있는 테두리 타일의 개수 (높이+너비*2-4(겹치는부분))' 조건을 만족한다면,
return make_pair(i, w); //높이, 너비 pair를 만들어서 리턴
}
}
}

int main() { //메인 함수
int r, b; //r: 빨간 타일 개수, b: 갈색 타일 개수

//각 색깔별 타일 개수 입력받기
cin >> r >> b;

//연산 값을 pair에 저장
pair<int, int> result = length(r, b);

//위의 연산으로 인해 리턴된 pair를 출력
cout << result.first << ' ' << result.second << '\n'; //높이와 너비 출력
return 0;
}