1일1알고리즘7 알고리즘 스터디 Google Kickstart 2020 Round A Allocation N개의 집이 있고, i번째 집의 가격은 Ai 달러이다. 총 재산은 B달러만큼 가지고 있다. 살수있는 집의 최대 갯수를 구하는 문제이다. Limits Time limit: 15 seconds per test set. Memory limit: 1GB. 1 ≤ T ≤ 100. 1 ≤ B ≤ 10^5. 1 ≤ Ai ≤ 1000, for all i. Test set 1 1 ≤ N ≤ 100. Test set 2 1 ≤ N ≤ 10^5. C++를 사용한 제 풀이입니다. #include #include using namespace std; int n, b, a[100000]; void solve() { cin >> n >> b; for (int.. 2020. 7. 9. 이전 1 2 다음