-
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
8-suhyun113 #32
8-suhyun113 #32
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.
์ ๋ ํ์ด์ฌ์ผ๋ก ํ๋ฒ ํ์ด ๋ดค๋๋ฐ์!
๋จผ์ ์ด ์ง์ /์ดํ ํ์๋ ์๋ ๊ทธ๋ฆผ์ฒ๋ผ 3ํ
์ฆ, ์ถ๋ฐ์ ๊ณผ ๋์ฐฉ์ ์ด ๋ชจ๋ ํ์ฑ ๋ด๋ถ์ ์์ด ์ง์ /์ดํ์ด ํ์ ์๋ ๊ฒฝ์ฐ๊ฐ ์ด ์ง์ /์ดํ 0ํ
dis1 = (x1 - cx)**2 + (y1 - cy)**2
dis2 = (x2 - cx)**2 + (y2 - cy)**2
pow_cr = cr**2
์ํ๋์ฒ๋ผ ์ ๊ณผ ์ ์ฌ์ด์ ๊ฑฐ๋ฆฌ๋ฅผ ๊ตฌํ๋ ๊ณต์์ ์ฌ์ฉํ๋ฉด ํ ์ ์๋๋ผ๊ตฌ์!
์ํ ๋ฌธ์ ๋ ๋ญ๊ฐ ์ด๋ ค์ ๋ณด์ฌ์ ์์ ์ ์ ๋๋๋ฐ ์ด ๋ฌธ์ ๋ ์ฌ๋ฏธ์๊ฒ ํ์๋ ๊ฒ ๊ฐ์์ ใ ใ pr ์๊ณ ํ์ จ์ต๋๋ค!
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.
์ ๋ ๊ฐ์งํ ์๊ฐ๋๋ฉด์ ์ฌ๋ฐ๊ฒ ํ์๋๋ฐ์.
"์์์ ๊ณผ ๋์ฐฉ์ ์ค ํ๋๋ง์ ํฌํจํ๊ณ ์๋ ์"์ธ ๊ฒฝ์ฐ์๋ง cnt๋ฅผ ์ฆ๊ฐ์ํค๋ ๋ก์ง์ผ๋ก ํด๊ฒฐํด๋ดค์ต๋๋ค.
๋ค๋ฅธ c++ํ์ด๋ ๋ณด๋๊น ์ข๋ค์!! PR ์๊ณ ํ์
จ์ต๋๋ค๐
#include <iostream>
#include <cmath>
using namespace std;
double calcDistance(int& x1, int& y1, int& x2, int& y2) {
return sqrt(pow(x2 - x1, 2) + pow(y2 - y1, 2));
}
int main() {
int T, x1, y1, x2, y2, cx, cy, r, n;
float distance = 0;
cin >> T;
while (T--) {
int cnt = 0;
cin >> x1 >> y1 >> x2 >> y2;
cin >> n;
while (n--) {
cin >> cx >> cy >> r;
bool start_in_circle = calcDistance(x1, y1, cx, cy) <= r;
bool end_in_circle = calcDistance(x2, y2, cx, cy) <= r;
if (start_in_circle != end_in_circle) cnt++;
}
cout << cnt << '\n';
}
return 0;
}
๐ ๋ฌธ์ ๋งํฌ
https://www.acmicpc.net/problem/1004
โ๏ธ ์์๋ ์๊ฐ
์ฝ 1์๊ฐ
โจ ์๋ ์ฝ๋
๐ฉต1. ์ํฉ ์ค๋ช ๐ฉต
๐ฉต2. ํ์ฑ๊ณ ์์๐ฉต
=> ์ํ์ ์ง๋, ์ถ๋ฐ์ , ๋์ฐฉ์ ์ฃผ์ด์ก์ ๋, ์ด๋ฆฐ ์์์๊ฒ ํ์ํ ์ต์์ ํ์ฑ๊ณ ์ง์ /์ดํ ํ์?
๐ฉต3. ์กฐ๊ฑด๐ฉต
๐ง1) ํ์ฑ๊ณ๋ก ์ง์ ๊ณผ ์ดํ ๋ชจ๋ ํด์ผ๋ง ํจ
=> ์ถ๋ฐ์ ๊ณผ ๋์ฐฉ์ ์ ํฌํจํ๋ ํ์ฑ๊ณ๋ ์๋ก ๋ฌ๋ผ์ผ ํจ
๐ง2) ๋์ฐฉ์ ์ ํฌํจํ๋ ํ์ฑ๊ณ์ ๊ฐ์๋งํผ ์ง์ ํด์ผ ํ๊ณ , ์ถ๋ฐ์ ์ ํฌํจํ๋ ํ์ฑ๊ณ์ ๊ฐ์๋งํผ ์ดํํด์ผ ํจ
*์์ ๊ทธ๋ฆผ์ ์ฐธ๊ณ ๋ก ํ๋ฉด,
-> ์ถ๋ฐ์ ์ ํฌํจํ๋ ํ์ฑ ๊ฐ์ : 1๊ฐ์ด๋ฏ๋ก ์ง์ ํ์ = 1ํ
-> ๋์ฐฉ์ ์ ํฌํจํ๋ ํ์ฑ ๊ฐ์ : 2๊ฐ์ด๋ฏ๋ก ์ดํ ํ์ = 2ํ
=> ์ต์ข ์ง์ /์ดํ ํ์ = ์ง์ ํ์ + ์ดํ ํ์ = 3ํ
๐ฉต4. ์ต์ข ์ฝ๋๐ฉต
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์ฝ๊ฐ ๋น์ทํ ๋ฌธ์ ๋ฅผ ๊ฐ์งํ ์์ ์ ๋ค์ผ๋ฉด์ ํ์ด๋ณธ ๊ธฐ์ต์ด ๋๋๋ฐ,,,
์๊ณผ ์ ์ฌ์ด์ ๊ฑฐ๋ฆฌ๋ฅผ ๊ตฌํ๋ ๊ณต์์ ์ด์ฉํ์ฌ ๊ทธ ๊ฑฐ๋ฆฌ๊ฐ ๋ฐ์ง๋ฆ๋ณด๋ค ํฌ๋ ์๋์ ๋ฐ๋ผ ๊ทธ ์ ์ด ์์ ๋ด๋ถ์ ์๋์ง ์ธ๋ถ์ ์๋์ง ๊ตฌํ ์ ์๋ค๋ ๊ฒ์ ๋ค์ ํ ๋ฒ ๋ณต์ตํด๋ณผ ์ ์์๋ค.