1772021-02-03 22:12:48Babják PéterZenehallgatáscpp11Időlimit túllépés 44/50296ms4736 KiB
#include <iostream>
#include <algorithm>
#include <vector>

using namespace std;

struct time_ {
	int second;
	int index;
	int song;
};
int read() {
	int result = 0;
	char ch;
	ch = getchar();
	result = ch-'0';
	while (true) {
		ch = getchar();
		if (ch ==10 || ch == 32) break;
		result = result*10 + (ch - '0');
	}
		return result;
}
int main() {

	int N, K;
	N=read();K=read();
	vector<int> songS(N);
	int full_time = 0;
	for (auto& e : songS) {
		e=read();
		full_time += e;
	}
	vector<time_> timeS(K);
	for (int i = 0; i < K; i++) {
		timeS[i].second=read();
		timeS[i].index = i;
	}
	sort(timeS.begin(), timeS.end(), [](time_ a, time_ b) {
		return a.second < b.second;
	});
	int song = 0;
	long long length = songS[0];
	for (auto& e : timeS) {
		while (e.second > length) {
			song = (song == N - 1 ? 0 : song + 1);
			length += songS[song];
		}
		e.song = song + 1;
	}
	sort(timeS.begin(), timeS.end(), [](time_ a, time_ b) {
		return a.index < b.index;
	});
	for (auto e : timeS) {
		cout << e.song << " ";
	}
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base44/50
1Elfogadva0/02ms1740 KiB
2Elfogadva0/039ms4636 KiB
3Elfogadva2/21ms1836 KiB
4Elfogadva2/22ms1840 KiB
5Elfogadva2/23ms1840 KiB
6Elfogadva3/316ms1840 KiB
7Elfogadva3/328ms1840 KiB
8Elfogadva3/3150ms1860 KiB
9Elfogadva2/239ms4696 KiB
10Elfogadva2/239ms4696 KiB
11Elfogadva2/239ms4696 KiB
12Elfogadva2/243ms4696 KiB
13Elfogadva2/241ms4700 KiB
14Elfogadva2/243ms4700 KiB
15Elfogadva2/243ms4696 KiB
16Elfogadva2/245ms4700 KiB
17Elfogadva2/246ms4700 KiB
18Elfogadva2/256ms4696 KiB
19Elfogadva2/254ms4696 KiB
20Elfogadva2/2167ms4732 KiB
21Elfogadva2/2168ms4732 KiB
22Elfogadva3/3172ms4736 KiB
23Időlimit túllépés0/3296ms2448 KiB
24Időlimit túllépés0/3286ms2444 KiB