728x90
https://school.programmers.co.kr/learn/courses/30/lessons/118667
소스코드
using System;
using System.Collections.Generic;
using System.Linq;
public class Solution
{
public int solution(int[] queue1, int[] queue2)
{
int answer = 0;
Queue<long> q1 = new Queue<long>(queue1.Select(s => (long)s));
Queue<long> q2 = new Queue<long>(queue2.Select(s => (long)s));
long sum1 = q1.Sum();
long sum2 = q2.Sum();
long allSum = sum1 + sum2;
long div = allSum / 2;
double maxCount = queue1.Length + queue2.Length * 2;
if (sum1 == sum2)
return 0;
if (allSum % 2 == 1)
return -1;
for (int i = 0; i < maxCount; i++)
{
if (sum1 == div)
return answer;
if (sum1 < div)
{
sum1 += q2.Peek();
q1.Enqueue(q2.Dequeue());
}
else
{
sum1 -= q1.Peek();
q2.Enqueue(q1.Dequeue());
}
answer++;
}
return -1;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
※[프로그래머스]Lv.2 피로도 C#(순열) (0) | 2023.07.20 |
---|---|
[프로그래머스]Lv.2 주차 요금 계산 C# (0) | 2023.07.17 |
[프로그래머스]Lv.2 할인 행사 C# (0) | 2023.07.12 |
※[프로그래머스]Lv.2 롤케이크 자르기C# (순차적으로 줄여나가기) (0) | 2023.07.07 |
※[프로그래머스]Lv.2 귤 고르기C# (Dictionary.TryAdd 중복 카운터) (0) | 2023.07.07 |