-
Notifications
You must be signed in to change notification settings - Fork 5
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
18-janghw0126 #188
18-janghw0126 #188
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.
์ฒ์์ M * ?? + x = N * ??? + y = ๋ต
์ด๋ ๊ฒ ์์ ์ ์ด๋ณด๋ ๋ชจ๋ฅด๋ ์๊ฐ ๋๋ฌด ๋ง์์
x๋ฅผ ๊ณ ์ ํ๊ณ y๋ง ๋ณํ์์ผ์ x์ ๋ง๋ y ๊ฐ์ ๊ตฌํ๋ ๋ฐฉ์์ผ๋ก ๊ตฌํํด๋ดค์ต๋๋ค!
์ข ๋ง์ด ์ค๋ ์ฐ๋๋ฅผ ์๊ธฐ ์ํด N, M์ ์ต์๊ณต๋ฐฐ์ ํ์์ด ํ์ํด์ ์ ๋ ์ ํด๋ฆฌ๋ ํธ์ ๋ฒ์ผ๋ก ์ต์๊ณต์ฝ์๋ฅผ ๊ตฌํ์ต๋๋ค!
์ด๋ฒ ์ฐจ์๋ ์๊ณ ํ์ จ์ด์!
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
int T = Integer.parseInt(bf.readLine());
StringBuilder printSet = new StringBuilder();
// ํ
์คํธ ์ผ์ด์ค ๊ฐฏ์๋งํผ ๋ฐ๋ณต
while(T > 0) {
// ์
๋ ฅ ๋ฐ์ดํฐ: M, N, x, y
StringTokenizer st = new StringTokenizer(bf.readLine());
int M = Integer.parseInt(st.nextToken());
int N = Integer.parseInt(st.nextToken());
int x = Integer.parseInt(st.nextToken());
int y = Integer.parseInt(st.nextToken());
T--;
// ์ธ์์ ์ข
๋ง์ด ์ค๋ ํด ๊ตฌํ๊ธฐ
// ๋ง์ง๋งํด = M, N์ ์ต์๊ณต๋ฐฐ์
int lastYear = (M*N) / gdc(M, N);
// x์ ๋ง์ถฐ์ y ๊ตฌํ๊ธฐ
int year = x;
int checkY = ((year-1) % N) + 1;
while(checkY != y) {
year += M;
checkY = ((year-1) % N) + 1;
// ์ธ์์ ์ข
๋ง์ด ์ง๋ฌ์ผ๋ฉด ์ข
๋ฃ
if(year > lastYear) {
year = -1;
break;
}
}
printSet.append(year).append("\n");
}
System.out.print(printSet);
}
// ์ ํด๋ฆฌ๋ ํธ์ ๋ฒ์ ์ด์ฉํ ์ต๋๊ณต์ฝ์ ๊ณ์ฐ
static int gdc(int a, int b) {
// ์ ํด๋ฆฌ๋ ํธ์ ๋ฒ์ a>b์ผ ๋๋ง ์ฑ๋ฆฝํ๋ฏ๋ก
if(a < b) {
int temp = a;
a = b;
b = temp;
}
while(b != 0) {
int r = a%b;
a = b;
b = r;
}
return a;
}
}
๐ ๋ฌธ์ ๋งํฌ
๋ฐฑ์ค | ์นด์ ๋ฌ๋ ฅ
โ๏ธ ์์๋ ์๊ฐ
50๋ถ
โจ ์๋ ์ฝ๋
๐๋ฌธ์ ์ฝ๋ ๋ฐ๋ก๊ฐ๊ธฐ
์ด๋ฒ ๋ฌธ์ ๋ ์ฃผ์ด์ง ๋ ํด์ ์ฃผ๊ธฐ์์ ๊ฐ๊ฐ์ ํน์ ์ฐ๋๊ฐ ๋์์ ๋ช๋ฒ ์งธ ํด์ ์กด์ฌํ๋์ง๋ฅผ ์ฐพ๋ ๋ฌธ์ ์์ต๋๋ค. ๊ทธ๋์ ๋ ํด์ ์ฃผ๊ธฐ์ ์์ ์ฐ๋๋ฅผ ๋ฐํ์ผ๋ก ์ํ๋ ์ฐ๋๋ฅผ ์ฐพ๋ ๋ก์ง์ ๋ธ๋ฃจํธ ํฌ์ค๋ก ํ์ด๋ณด์์ต๋๋ค.
๐๋ฌธ์ ํด๊ฒฐ ๋ก์ง
1. year ๋ณ์๋ฅผ target_x๋ก ์์ํฉ๋๋ค.
max_year1
์ฃผ๊ธฐ์์target_x
์ฐ๋๋ฅผ ๊ธฐ์ค์ผ๋ก ๊ณ์ฐ์ ์์ํ๋ค๋ ์๋ฏธ์ ๋๋ค.2. ์กฐ๊ฑด๋ฌธ์ ์ด์ฉํด์ ์ต๋ ๊ฐ๋ฅํ ์ฐ๋๊น์ง ๋ฐ๋ณต์ ์งํํฉ๋๋ค.
year
๊ฐtarget_y
์ ์ผ์นํ ๋๊น์งmax_year1
์ฃผ๊ธฐ๋ฅผ ๋ํ๋ฉด์ ๋ค์ ์ฐ๋๋ฅผ ํ์ํฉ๋๋ค.(year - target_y) % max_year2 == 0
์กฐ๊ฑด์ ๋ง์กฑํ๋ฉดyear
๋ฅผ ๋ฐํํ์ฌ ์ํ๋ ํด๋ฅผ ์ฐพ์ต๋๋ค.Note
๐ง ์ฌ๊ธฐ์ ์ ์ต์๊ณต๋ฐฐ์ ์ดํ์ ํด๋ฅผ ํ์ํ๋๋?
max_year1
๊ณผmax_year2
๊ฐ ๋ฐ๋ณต๋๋ ์ฃผ๊ธฐ์ฑ์ ๊ฐ์ง๊ธฐ ๋๋ฌธ์ ๋๋ค.์๋ฅผ ๋ค์ด,
max_year1 = 10
๊ณผmax_year2 = 12
๋ผ๋ฉด, ์ด ๋ ์ฃผ๊ธฐ๊ฐ ๋์์ ๋์์ ๊ฐ์ ํด๊ฐ ๋๋ ์ฃผ๊ธฐ๋ ์ต์ 60๋ (์ต์๊ณต๋ฐฐ์)๋ง๋ค ํ ๋ฒ์ฉ ๋ฐ์ํฉ๋๋ค. ๊ทธ๋ฌ๋ฏ๋ก ๋ ์ฃผ๊ธฐ์ ์ต์๊ณต๋ฐฐ์๋ณด๋ค ํฐ ๋ฒ์์์๋ ์ด๋ฏธ ๊ฐ์ ํจํด์ด ๋ฐ๋ณต๋๊ธฐ ๋๋ฌธ์, ์ต์๊ณต๋ฐฐ์๊น์ง๋ง ํ์ํ๋ฉด ๋์ผํ ๊ฒฐ๊ณผ๋ฅผ ์ป์ ์ ์์ต๋๋ค.3. ์กฐ๊ฑด์ ๋ง์กฑํ ๊ฒฝ์ฐ
year
๋ฅผ ๋ฐํํ์ฌ ๋ฐ๋ณต์ ์ข ๋ฃํ๊ณ , ์๋๋ฉด -1์ ๋ฐํํ์ฌ ์ข ๋ฃํฉ๋๋ค.์๋ฅผ ๋ค์ด,
max_year1
= 10,max_year2
= 12,target_x
= 3,target_y
= 9์ธ ๊ฒฝ์ฐ๋ฅผ ์๊ฐํด๋ด ์๋ค.์ฌ๊ธฐ์ year๋ 3๋ถํฐ ์์ํ๊ณ 10์ฉ ์ฆ๊ฐํฉ๋๋ค.
๊ทธ ํ
year
= 3, 13, 23, ...์ ๋ํด(year - 9) % 12 == 0
์กฐ๊ฑด์ ํ์ธํฉ๋๋ค.์กฐ๊ฑด์ ํ์ธํ๋ค๊ฐ 63 ํด์์
(63 - 9) % 12 == 0
์ ๋ง์กฑํ๋ฏ๋ก 63์ด ๋ต์ด ๋ฉ๋๋ค.๐ฉโ๐ป์ต์ข ์ฝ๋
๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
.