-
Notifications
You must be signed in to change notification settings - Fork 0
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
[11월 15일] 트리 #9
base: main
Are you sure you want to change the base?
[11월 15일] 트리 #9
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p3. 18111 코드 리뷰 완료
안녕하세요 채원님~
문제 푸시느라 정말 고생 많으셨어요!!👍👍
약간의 코멘트 남겼습니다.
전반적으로 문제를 해결하는 로직이 정말 좋은 것 같습니다!
궁금한 점 있으시면 리뷰어를 호출해주세요~
수고하셨습니다!!
//�Է� ��� ���� ���̿��� �ִ�, �ּ� �˾Ƴ��� | ||
int min = 256; | ||
int max = 0; | ||
for (int n = 0; n < land.size(); n++) { | ||
int tmp = *min_element(land[n].begin(), land[n].end()); | ||
if (tmp <= min) { | ||
min = tmp; | ||
} | ||
} | ||
for (int n = 0; n < land.size(); n++) { | ||
int tmp = *max_element(land[n].begin(), land[n].end()); | ||
if (tmp >= max) { | ||
max = tmp; | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p3. 입력받을 때 한번에 min값, max값을 갱신하면 코드 길이를 줄일 수 있을 것 같습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P1. 15681 코드 리뷰 완료
채원님 안녕하세요, 전체적인 로직도, 주석도 모두 좋습니다! 출력 형식 부분이랑 시간 초과 방지하기 위해 코드 추가하는 것만 수정해주시면 좋을 것 같아요! 코드 수정 후에 리뷰어로 저 호출해주세요! 수고 많으셨습니다! 🥰🥰
for (int i = 0; i < Q; i++) { | ||
int q; | ||
cin >> q; | ||
cout << sub[q]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
출력에 줄 바꾸기('\n') 넣어주셔야 해요!
return sub[cur] = subtreenum + 1; | ||
} | ||
int main() { | ||
int u, v; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
그냥 코드 돌리면 시간 초과가 나서 아래 두 줄 추가해 주세요!
ios::sync_with_stdio(false); cin.tie(NULL);
내용 & 질문
<기존 제출>
<추가 제출>