Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- NavMesh
- 유니티 브랜치 merge
- 유니티 해상도 변경
- navigation
- networkobject.networkid
- 깃허브 데스크탑 합치기
- nav거리
- stateauthority
- 깃허브 데스크탑 병합
- m585
- 유니티
- 몬스터
- githubdesktopmerge
- 유니티 합치기
- networkbehaviourid
- m585 수리
- m590 수리
- 유니티 해상도
- M590
- unity merge
- 유니티 머지
- nav오브젝트사이거리
- 오브젝트 깜빡임
- unity git
- Github DeskTop Merge
- Unity
- 유니티 해상도 설정
- unity 병합
- networkobject
Archives
- Today
- Total
집게사장의 꿈
백준 C# 10989 수 정렬하기 3 본문
문제
입력된 1~10000까지의 제한된 숫자를 정렬하는 것
해결
입력되는 수가 10000까지라는 것이 힌트.
10000개의 배열을 통해 입력된 수를 세아리는 것
internal class _10989 // 수 정렬하기 3
{
static void Main(string[] args)
{
//3. 1만개의 숫자를 세아리기
int iter = int.Parse(ReadLine());
int[] nums = new int[10000];
for(int i = 0; i < iter; i++)
{
nums[int.Parse(ReadLine())-1]++;
}
using (StreamWriter writer = new StreamWriter(Console.OpenStandardOutput()))
{
for (int i = 0; i < nums.Length; i++)
{
for (int j = 0; j < nums[i]; j++)
{
writer.WriteLine(i + 1);
}
}
}
/* 1. 자체 솔트 정렬
int iter = int.Parse(ReadLine());
List<int> list = new List<int>();
for(int i = 0; i < iter; i++)
{
list.Add(int.Parse(ReadLine()));
}
list.Sort();
foreach(int i in list)
{
WriteLine(i);
}
*/
/* 2. 분할 정렬 알고리즘
for (int i = 0; i< iter; i++)
{
int num = int.Parse(ReadLine());
int left = 0;
int right = list.Count;
while (left < right)
{
int mid = (left + right) / 2;
if (list[mid] < num)
left = mid + 1;
else
right = mid;
}
list.Insert(left,num);
}
foreach (var item in list)
{
WriteLine(item);
}
*/
}
}
'기타 > 백준' 카테고리의 다른 글
백준 C# 28702 FizzBuzz (0) | 2024.07.21 |
---|---|
백준 C# 11050 이항계수 1 (0) | 2024.07.21 |
백준 C# 2869 달팽이는 나무에 올라가고 싶다. (0) | 2024.07.19 |
백준 C# 2775 부녀회장이 될거야 (2) | 2024.07.14 |
백준 C# 49768592 최대공약수와 최소공배수 (0) | 2024.07.11 |