-
Notifications
You must be signed in to change notification settings - Fork 2
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
43-gjsk132 #234
base: main
Are you sure you want to change the base?
43-gjsk132 #234
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.
์ ๋ ์ฒ์์ "๋ญ์ง ํฌ์ธํฐ 4๊ฐ๋ฅผ ๊ฐ๊ณ ๋์์ผ ํ๋?" ์ด ์๊ฐํ๋ค๊ฐ ์์ฌ ๋๋ฉ์ด๋ 2์ค for๋ฌธ์ผ๋ก naiveํ๊ฒ ๋๋ฆฌ๊ณ ์๋ ๋๋ฉ์ด 2๊ฐ์ ๋ํด์ ํฌํฌ์ธํฐ๋ฅผ ๊ตด๋ฆฌ๋ ๋ฐฉ์์ผ๋ก ํ์ต๋๋ค.
๊ทธ๋ฐ๋ฐ ๋๋ฌด ์ค๋ ๊ฑธ๋ฆฌ๋ ๊ตฐ์. ์ง์์ ํ์ง๋ง...
๊ทธ๋์ ๊ฐ๋ฅํ ๋์ฌ๋ ์กฐํฉ์ ๋ฏธ๋ฆฌ ๋ฐฐ์ด์ ์ ์ฅํด๋ ๋ค, ๊ฑฐ๊ธฐ์ ํฌํฌ์ธํฐ๋ฅผ ๋๋ฆฌ๋ ์์ผ๋ก ๊ณ ์ณ๋ณด๋๊น ์๊ฐ์ด ํ ๋นจ๋ผ์ง๋ค์ :)
๋ณ๊ฒฝ๋ ์ฝ๋
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
struct FSnowman
{
int Height;
int FirstSnowball;
int SecondSnowball;
FSnowman(int InHeight, int InFirstSnowball, int InSecondSnowball)
: Height(InHeight)
, FirstSnowball(InFirstSnowball)
, SecondSnowball(InSecondSnowball)
{}
bool operator<(const FSnowman& InSnowman) const
{
return this->Height < InSnowman.Height;
}
};
int main()
{
cin.tie(nullptr)->sync_with_stdio(false);
int SnowballCount; cin >> SnowballCount;
vector<int> SnowballDiameters(SnowballCount); for(int& Diameter : SnowballDiameters) cin >> Diameter;
vector<FSnowman> Snowmans;
for(int i = 0; i < SnowballCount - 1; ++i)
{
for(int j = i + 1; j < SnowballCount; ++j)
{
Snowmans.emplace_back(SnowballDiameters[i] + SnowballDiameters[j], i, j);
}
}
sort(Snowmans.begin(), Snowmans.end());
int MinSnowmanHeightDifference = 1e9;
for(int Elsa = 0; Elsa < Snowmans.size() - 1; ++Elsa )
{
int Anna = Elsa + 1;
while(Anna < Snowmans.size()
&& (Snowmans[Elsa].FirstSnowball == Snowmans[Anna ].FirstSnowball
|| Snowmans[Elsa].FirstSnowball == Snowmans[Anna].SecondSnowball
|| Snowmans[Elsa].SecondSnowball == Snowmans[Anna].FirstSnowball
|| Snowmans[Elsa].SecondSnowball == Snowmans[Anna].SecondSnowball))
{
Anna++;
}
if(Anna < Snowmans.size())
{
MinSnowmanHeightDifference = min(MinSnowmanHeightDifference,
Snowmans[Anna].Height - Snowmans[Elsa].Height);
}
}
cout << MinSnowmanHeightDifference;
return 0;
}
|
||
target = snow[s1] + snow[s2] | ||
|
||
min_gap = target |
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.
์๊ฑฐ ์ด๊ธฐ๊ฐ์ ์ด๋ฐ ์์ผ๋ก ์ค์ ํ๋ฉด
4
1 2 3 999
answer: 995
output: 3
์ด๋ฐ ์์ผ๋ก ์ถ๋ ฅ๋ฉ๋๋น. ์ด๊ธฐ๊ฐ ์ค์ ์ ๋ค์ ๊ณ ๋ฏผํด๋ณผ๊น์!?
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.
์คํธ ๊ฐ์ฌํจ๋๋น
min_gap = float('inf')
๊ทผ๋ฐ ์ด์ ๋๋ฉด ์น๋ช ์ ์ธ๋ฐ ์ด์บ ๋ง์ท์ง ํ ์ผ ์ถ๊ฐํด๋ฌ๋ผ์นผ๊น์๐ซ
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.
์ด์ ๊ณง "20366๋ฒ - ๊ฐ์ด ๋์ฌ๋ ๋ง๋ค๋? ๋ฌธ์ ๊ฐ ์ฌ์ฑ์ ๋์์ต๋๋ค. (์ฌ์ฑ์ ์ด์ : ๋ฐ์ดํฐ ์ถ๊ฐ)" ๋ณด๋ ๊ฑธ๊น์ ใ ใ ใ
๐ ๋ฌธ์ ๋งํฌ
๋ฐฑ์ค 20366 : ๊ฐ์ด ๋์ฌ๋ ๋ง๋ค๋?
โ๏ธ ์์๋ ์๊ฐ
1์๊ฐ 30๋ถ
โจ ์๋ ์ฝ๋
๐ฏ ๋ฌธ์ ์ดํด
์ฒ์์๋ 4๊ฐ๋ฅผ ๋ค ๊ณจ๋ผ์ค์ผํ๋ ์ถ์๋๋ฐ...
๊ทธ๋ฅ 2๊ฐ๋ ๋ฏธ๋ฆฌ ๊ณจ๋ผ์ target์ผ๋ก ์ ํ๊ณ , ๋๋จธ์ง 2๊ฐ๋ฅผ ํฌํฌ์ธํฐ๋ก ๋๋ฉด์ target๊ฐ๊ณผ ๊ฐ๊น์์ง๋๋ก ํ์๋ค.
์ฌ์ฉํ ๋๋ฉ์ด๋ ์ฐ๋ฉด ์๋๊ธฐ ๋๋ฌธ์ ์ฌ์ฉํ ๋๋ฉ์ด์ ๊ฐ์ idx๋ก ๊ฐ๋ฉด ์คํตํด์ค๋ค.
๐์ฝ๋ ์ค๋ช
์ฃผ์ ์ฝ๋
๊ฐ์ฅ ํต์ฌ์ด ๋๋ ํฌํฌ์ธํฐ ์ฝ๋์ ๋๋ค.
2๊ฐ๋ก ์ ์ ํ ๊ฐ์ block1, block2๋ก ์ ํ๊ณ , ํด๋น ์์น์ ๋๋ฉ์ด ์ง๋ฆ์ ํฉ์ target์ผ๋ก ์ง์ ํด์ค๋๋ค.
์ต์ ์ฐจ์ด๋ฅผ target์ผ๋ก ํด๋๊ณ , start์ end๋ก ๋ฐ๋ณต๋ฌธ์ ๋๋ ค์ค๋๋ค.
๋ง์ฝ block1๊ณผ block2๋ ๊ฒน์น๋ค๋ฉด start๋ฉด +1, end๋ฉด -1์ ํด์ค๋๋ค.
์ดํ์๋ start์ end๋ก ๋ง๋ ๋์ฌ๋์ ํค๋ฅผ target๊ณผ ๋น๊ตํด์ ๋ฐ๋ณต๋ฌธ์ ๋๋ ค์ฃผ๋ฉด ๋ฉ๋๋ค.
๋๋๊ณ ๋๋ฉด ๊ฐ์ฅ ์์ ํค ์ฐจ์ด๋ฅผ ์ถ๋ ฅํด์ค๋๋ค.
์ ํฌํฌ์ธํฐ ์ฝ๋๋ฅผ ์ด์ฉํ์ฌ
2์ค ๋ฐ๋ณต๋ฌธ์ผ๋ก ๊ณ ์ ํ๋ ค๋ 2๊ฐ์ ๋๋ฉ์ด๋ฅผ ์ ํด์ฃผ๊ณ , ์ต์๊ฐ์ answer์ ์ ํด์ค๋๋ค.
์๊ฐ์ ์ค์ด๊ธฐ ์ํด answer์ด 0์ด ๋๋ ๊ฐ์ด ๋์ค๋ฉด ๋ฐ๋ณต์ ์ค๋จํ๊ณ , ๊ฒฐ๊ณผ๋ฅผ ์ถ๋ ฅํฉ๋๋ค.
์ ์ฒด ์ฝ๋
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์ต๊ทผ์ ํฌํฌ์ธํฐ ๋ฌธ์ ๋ฅผ ๋ง์ด ์ ํ๋๋ฐ, ์์ฃผ ์ ํ์ด๋ด์ ํ ๋ฒ ํ์ด๋ด ๋๋ด
๊ทธ๋๋ ์์ง ์์ฉํ๋ ค๊ณ ํ๋๊น ์ฝ๊ฐ ์ด๋ ต๋ค์ ํ์ ๐ค