Task: | Robotti |
Sender: | ODUE |
Submission time: | 2024-11-01 17:14:09 +0200 |
Language: | C++ (C++20) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
#2 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.00 s | 1, 2 | details |
#2 | ACCEPTED | 0.00 s | 1, 2 | details |
#3 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
#4 | ACCEPTED | 0.00 s | 1, 2 | details |
#5 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
#6 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
#7 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
#8 | ACCEPTED | 0.00 s | 1, 2 | details |
#9 | ACCEPTED | 0.00 s | 1, 2 | details |
#10 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
#11 | WRONG ANSWER | 0.00 s | 1, 2 | details |
#12 | RUNTIME ERROR | 0.00 s | 2 | details |
#13 | RUNTIME ERROR | 0.00 s | 2 | details |
#14 | RUNTIME ERROR | 0.01 s | 2 | details |
#15 | RUNTIME ERROR | 0.00 s | 2 | details |
#16 | WRONG ANSWER | 0.00 s | 2 | details |
#17 | ACCEPTED | 0.01 s | 2 | details |
#18 | RUNTIME ERROR | 0.01 s | 2 | details |
#19 | RUNTIME ERROR | 0.32 s | 2 | details |
#20 | ACCEPTED | 0.01 s | 2 | details |
#21 | RUNTIME ERROR | 0.01 s | 2 | details |
#22 | RUNTIME ERROR | 0.01 s | 2 | details |
#23 | RUNTIME ERROR | 0.02 s | 2 | details |
#24 | WRONG ANSWER | 0.02 s | 2 | details |
Code
#include <iostream> #include <string> #include <vector> /*#include <random> #include <chrono>*/ int main() { unsigned long totalMove{0}; long totalCoins{0}; long roomAmount; std::cin >> roomAmount; std::string rooms; std::cin >> rooms; // Testaukseen suurilla luvuilla /*std::string jono; //jono.reserve(roomAmount); std::random_device rd; std::mt19937 gen(rd()); std::uniform_int_distribution charDist(0, 3); for (long i = 0; i < 199999; ++i) { char nextChar = ".***"[charDist(gen)]; jono += nextChar; } std::uniform_int_distribution startLoc(0, 199999); jono[startLoc(gen)] = 'R'; std::string rooms{jono}; auto roomAmount = static_cast<long>(rooms.length()); auto startTime { std::chrono::high_resolution_clock::now() };*/ long maxCoins{0}; auto startPos{0}; std::vector<long> coinPositions; for (auto i = 0; i < roomAmount; ++i) { if (rooms[i] == '*') { ++maxCoins; coinPositions.push_back(i); } else if (rooms[i] == 'R') startPos = i; } //auto startPos{ rooms.find('R') }; auto currentPos{ static_cast<long>(startPos) }; auto firstCoin{ coinPositions.begin() }; auto lastCoin{ coinPositions.end() }; while (totalCoins < maxCoins) { auto nearestCoin = std::lower_bound(firstCoin, lastCoin, currentPos); auto nearestLeft = std::prev(nearestCoin); auto pluslength{ (nearestCoin != lastCoin) ? *nearestCoin - currentPos : -1 }; auto minuslength{ (nearestLeft != firstCoin) ? currentPos - *std::prev(nearestCoin) : -1 }; if (pluslength < minuslength) { currentPos += pluslength; coinPositions.erase(nearestCoin); totalMove += pluslength; } else if (pluslength != minuslength) { currentPos -= minuslength; coinPositions.erase(nearestCoin - 1); totalMove += minuslength; } else break; ++totalCoins; } std::cout << totalMove << " " << totalCoins << "\n"; // Testaukseen /*auto endTime{std::chrono::high_resolution_clock::now()}; auto duration{std::chrono::duration_cast<std::chrono::milliseconds>(endTime - startTime)}; int durationInt = static_cast<int>(duration.count()); std::cout << durationInt << "\n";*/ // Syötteen esimerkki omaa muistia varten: **.*......*.R*...*.. return 0; }
Test details
Test 1
Group: 1, 2
Verdict: ACCEPTED
input |
---|
1 R |
correct output |
---|
0 0 |
user output |
---|
0 0 |
Test 2
Group: 1, 2
Verdict: ACCEPTED
input |
---|
10 ...R...... |
correct output |
---|
0 0 |
user output |
---|
0 0 |
Test 3
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
10 **.R...*** |
correct output |
---|
12 5 |
user output |
---|
(empty) |
Error:
code: malloc.c:2617: sysmalloc: Assertion `(old_top == initial_top (av) && old_size == 0) || ((unsigned long) (old_size) >= MINSIZE && prev_inuse (old_top) && ((unsigned long) old_end & (pagesize - 1)) == 0)' failed.
Test 4
Group: 1, 2
Verdict: ACCEPTED
input |
---|
10 ***R****** |
correct output |
---|
0 0 |
user output |
---|
0 0 |
Test 5
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
1000 R................................ |
correct output |
---|
947 9 |
user output |
---|
(empty) |
Error:
munmap_chunk(): invalid pointer
Test 6
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
1000 ................................. |
correct output |
---|
886 9 |
user output |
---|
(empty) |
Error:
free(): invalid size
Test 7
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
1000 .....*..*....**..**..*......*.... |
correct output |
---|
1287 400 |
user output |
---|
(empty) |
Error:
malloc(): mismatching next->prev_size (unsorted)
Test 8
Group: 1, 2
Verdict: ACCEPTED
input |
---|
1000 ************.*****************... |
correct output |
---|
0 0 |
user output |
---|
0 0 |
Test 9
Group: 1, 2
Verdict: ACCEPTED
input |
---|
1000 ******************************... |
correct output |
---|
0 0 |
user output |
---|
0 0 |
Test 10
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
1000 R*****************************... |
correct output |
---|
999 999 |
user output |
---|
(empty) |
Error:
malloc(): mismatching next->prev_size (unsorted)
Test 11
Group: 1, 2
Verdict: WRONG ANSWER
input |
---|
1000 ******************************... |
correct output |
---|
999 999 |
user output |
---|
18446744073709551609 29 |
Test 12
Group: 2
Verdict: RUNTIME ERROR
input |
---|
10000 .......**........*...........*... |
correct output |
---|
10971 999 |
user output |
---|
(empty) |
Test 13
Group: 2
Verdict: RUNTIME ERROR
input |
---|
10000 *..*....*......*.....*..*........ |
correct output |
---|
9999 999 |
user output |
---|
(empty) |
Error:
munmap_chunk(): invalid pointer
Test 14
Group: 2
Verdict: RUNTIME ERROR
input |
---|
10000 *.*.*...**.*...*....**.**.**..... |
correct output |
---|
18766 5000 |
user output |
---|
(empty) |
Error:
malloc(): mismatching next->prev_size (unsorted)
Test 15
Group: 2
Verdict: RUNTIME ERROR
input |
---|
10000 R*****************************... |
correct output |
---|
9999 9999 |
user output |
---|
(empty) |
Test 16
Group: 2
Verdict: WRONG ANSWER
input |
---|
10000 ******************************... |
correct output |
---|
9999 9999 |
user output |
---|
18446744073709551613 14 |
Test 17
Group: 2
Verdict: ACCEPTED
input |
---|
200000 ................................. |
correct output |
---|
0 0 |
user output |
---|
0 0 |
Test 18
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 ................................. |
correct output |
---|
299934 10000 |
user output |
---|
(empty) |
Error:
munmap_chunk(): invalid pointer
Test 19
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 **.***....**..**.....***.*..*.... |
correct output |
---|
299998 100000 |
user output |
---|
(empty) |
Test 20
Group: 2
Verdict: ACCEPTED
input |
---|
200000 ******************************... |
correct output |
---|
0 0 |
user output |
---|
0 0 |
Test 21
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 R................................ |
correct output |
---|
133765 3 |
user output |
---|
(empty) |
Test 22
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 R................................ |
correct output |
---|
199982 5000 |
user output |
---|
(empty) |
Error:
malloc(): mismatching next->prev_size (unsorted)
Test 23
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 R*****************************... |
correct output |
---|
199999 199999 |
user output |
---|
(empty) |
Test 24
Group: 2
Verdict: WRONG ANSWER
input |
---|
200000 ******************************... |
correct output |
---|
199999 199999 |
user output |
---|
18446744073709551612 19 |