-
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
9-yuyu0830 #36
9-yuyu0830 #36
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.
์ ๋ ๋ฒ๋ธ์ ๋ ฌ์์ ํฐ ์ ๋ถํฐ ์ฒ๋ฆฌํ๋ ๋ฐฉ์์ ์ฑํํ์์ต๋๋ค.
ํฐ ์๋ ์ ๋ค์ ๋ฐฐ์น๋๊ธฐ ๋๋ฌด๋น
ํฐ์์ ์์น๊ฐ B
์ ์ผ์นํ ๋๊น์ง swapํ๋ ์์ผ๋ก ํ์ฌ ์งํํด์ค๋๋ค.
๊ทธ๋ผ ๊ฐ ์์ ์์น๊ฐ B์ ์์น์ ๋ง๊ฒ ์กฐ์ ํ๊ธฐ ์์ํ ๊ฒ์ด๊ณ B์ ๊ฐ์ด ์๊ฑฐ๋ ๊ฐ์ ๊ฒฝ์ฐ ๊ต์ฒด๊ฐ ์ผ์ด๋์ง ์์ผ๋ฏ๋ก ํด๋น ์์น ๊ทธ๋๋ก ๊ณ ์ ๋๊ฒ ๋ฉ๋๋ค.
#include <iostream>
#include <vector>
#include <queue>
#include <unordered_map>
using namespace std;
int N, n;
vector<int> A;
unordered_map<int, int> B;
priority_queue<int, vector<int>, less<int>> pq;
void Solve()
{
cin >> N;
N += 1;
A.assign(N, 0);
for (int i = 1; i < N; i++)
{
cin >> n;
A[i] = n;
pq.push(n);
}
for (int i = 1; i < N; i++)
{
cin >> n;
B[n] = i;
}
bool flag = true;
// ํฐ ๊ฐ์ด ๋ค๋ก ๋จผ์ ์ ๋ ฌ๋จ.
// ๋ณ๊ฒฝ๋๋ ๊ฐ์
while (flag && !pq.empty())
{
int cur = pq.top();
pq.pop();
int start = 1;
while (A[start] != cur) start++;
for (int i = start; i < B[cur]; i++)
{
swap(A[i], A[i + 1]);
}
}
for (int i = 1; i < N; i++)
{
if (i != B[A[i]])
{
flag = false;
break;
}
}
cout << flag ? 1 : 0;
}
int main()
{
cin.tie(nullptr);
ios::sync_with_stdio(false);
Solve();
return 0;
}
ํ์ง๋ง ์ด๋ ๊ฒ ํ์์ ๋ 71%์์ ๋งํ๋๊ตฐ์ ์ด๋ค ํ ์คํธ ์ผ์ด์ค๊ฐ ์์๊น์..? ๋ช์๊ฐ์งธ ๊ณ ๋ฏผํ๋ค๊ฐ ๋ค๋ฅธ ๋ฐฉ์์ผ๋ก ํ์์ต๋๋ค.
๋ค๋ฅธ ํ์ด
๋ ๋ฐฐ์ด์ด ์ผ์นํ๋ ๊ฒ์ฌ ๋ถ๋ถ์ ๋ณ๊ฒฝ์ด ์ผ์ด๋ฌ์ ๋์ ๊ทธ ๋ณ๊ฒฝ์ด ์ผ์ด๋ ์์ ์์ A์ B๊ฐ ์ผ์นํ ๊ฒฝ์ฐ ๋์ผํ ๋ฐฐ์ด์ธ์ง ๊ฒ์ฌํด์ฃผ๋ ๋ฐฉ์์ผ๋ก ์ฑํํ์์ต๋๋ค.
int b = arr[0][ptr + 1]; | ||
|
||
arr[0][ptr] = min(a, b); | ||
arr[0][ptr + 1] = max(a, b); |
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.
swap์ ์ฐ๋ฉด ๋์ ๊ด๊ณ๋ง ๋น๊ตํด์ ๋ฐ๋ก ์ฒ๋ฆฌํ ์ ์์ด๋๋ค!
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.
๊ทธ๋ฅ ๋ฒ๋ธ์ ๋ ฌ๋ก ํ๋ฉด ์ญ์ ์๊ฐ์ด๊ณผ๊ฐ ๋๋ค์. ์ ๋ swapํ๊ณ A์ B์ ๋ค์ ์์๊ฐ ๊ฐ๋ค๋ฉด ๋ ๋น๊ตํด์ฃผ๋ ์์ผ๋ก ํด๋ดค์ต๋๋ค. python์ผ๋ก๋ ์๊ฐ์ด๊ณผ๊ฐ ์ฌ์ ํ ๋ฐ์ํด์ pypy๋ก ํ๋๊น ํต๊ณผ๋์์ต๋๋ค..
import sys
input = sys.stdin.readline
n = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
def bubble_sort(A,B):
for i in range(len(A) - 1, 0, -1):
for j in range(i):
if A[j] > A[j + 1]:
A[j], A[j + 1] = A[j + 1], A[j]
if A[j+1] == B[j+1]:
if A==B:
print(1)
sys.exit(0)
print(0)
if A==B:
print(1)
sys.exit(0)
else:
bubble_sort(A,B)
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
โ๏ธ ์์๋ ์๊ฐ
1์๊ฐ
โจ ์๋ ์ฝ๋
๋ฌธ์ ์ดํด
n
์ ๊ธธ์ด๋ฅผ ๊ฐ์ง์์ด a, b
๊ฐ ์ฃผ์ด์ง๋ค.a
๋ฅผ ๋ฒ๋ธ ์ ๋ ฌ ํ๋ ค๊ณ ํ ๋, ์ค๊ฐ์b
์ ๊ฐ์์ง๋ ์๊ฐ์ด ์๊ธฐ๋์ง ์๊ธฐ์ง ์๋์ง ์ฌ๋ถ๋ฅผ 1, 0์ผ๋ก ์ถ๋ ฅํ์๋ฌธ์ ํ์ด
์ฒ์์๋ ์ด๊ฑฐ ์ง์ ๋ฒ๋ธ ์ ๋ ฌ ํ๋ฉด์ ์ผ์ผ์ด ๋น๊ตํ๋ฉด ์๊ฐ์ด ๋ง์ด ๋๋...? ์ถ์๋ค. ๋ฒ๋ธ ์ ๋ ฌ์ ๋ฌด์กฐ๊ฑด
n * (n - 1) / 2
๋ฒ ์ฐ์ฐํ ํ ๋ฐ? ์ถ์ด์ ์ต๋ ๊ฒฝ์ฐ์ ์๋ฅผ ๊ณ์ฐ ํด๋ณด๋ ์ฝ 5000๋ง๋ฒ... ์ฌ๊ธฐ์ ๋งค ์ ๋ ฌ๋ง๋ค 10,000๊ฐ์ฉ ๋น๊ตํ๋ค๊ณ ํ๋ฉด ๋ฌด์กฐ๊ฑด ์๊ฐ ์ด๊ณผ๊ฐ ๋๊ฒ ๋ค ์ถ์๋ค.์ผ๋จ ์๊ฐ ์ด๊ณผ๊ฐ ๋๋ ๋ง๋ ํ๋ฒ ๋งจ๋ ํค๋ฉ๋ถํฐ ํด๋ณด์๋ ๋ง์์ผ๋ก ๊ฐ๋จํ ๋ฒ๋ธ ์ ๋ ฌ์ ๊ตฌํํ๊ณ ๋งค ๋ฒ ๋ฐฐ์ด์ ์ฒ์๋ถํฐ ๋๊น์ง ๋น๊ตํ๋ ์ฝ๋๋ฅผ ์งฐ๋ค.
๋๋ ค๋ณด๋ ์ด๊ฒ ์ฌ๊ฑธ ์ค๊ฐ๊น์ง ์ ๊ฐ๋ค๊ฐ ์๊ฐ ์ด๊ณผ๊ฐ ๋ฌ๋ค. ๋ก์ง ์์ฒด๋ ๋ฌธ์ ๊ฐ ์๊ณ ์๊ฐ์ ์ค์ผ ํ์๊ฐ ์๋ ์ผ์ด์ค๊ฐ ์๋ค๋ ๋ป์ด์๋ค. ์ฝ๋๋ฅผ ์ฐฌ์ฐฌํ ์ดํด๋ณด๋ฉฐ ๊ณ ๋ฏผํ๋ ์ค ์๊น ์๊ฐํ๋ "๋งค๋ฒ ์ฒ์๋ถํฐ ๋น๊ตํ๋ฉด ๋๋ฌด ์ค๋ ๊ฑธ๋ฆด ๊ฒ ๊ฐ์๋ฐ" ๋ผ๋ ๊ณ ๋ฏผ์ด ๋ ์ฌ๋๊ณ , ์ ๋ ฌ๋๋ ๋ฐฐ์ด์ ํน์ง ์ ์๋ถ๋ถ์ด ๊ฐ๋ค๋ฉด ๊ทธ ์๋ถ๋ถ์ ์ ๋ ฌํ ํ์๊ฐ ์๋ค๋ ๊ฑธ ๊นจ๋ฌ์๋ค.
๊ทธ๋์
same()
ํจ์๋ง ์กฐ๊ธ ์๋ดค๋ค. ์ด๋ ๊ฒ ํ๋ฉด ๋ฐฐ์ด ๋น๊ต๋ฅผ ์ ๋ง ์ต์ ์ ๊ฒฝ์ฐ์๋ 5,000๋ง(์ ๋ ฌ ํ ํจ์ ํธ์ถ) + 1๋ง๋ฒ(๋น๊ต) ์ํํ๊ฒ ๋๋ค!๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ
์ฐ์ฐํ ์ง๋๊ฐ๋ค ๋ณธ ๋ฌธ์ ๋ผ์ ํ์ด๋ดค๋๋ฐ ์ ๋ ฌ ๋ค์ ๊ณต๋ถ ํด์ผ๊ฒ ๊ตฌ๋ ๋๊ผ๋ค..