| Task: | Poistot |
| Sender: | NoelMatero |
| Submission time: | 2025-01-18 15:46:00 +0200 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | 11 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 11 |
| #2 | TIME LIMIT EXCEEDED | 0 |
| #3 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.00 s | 1, 3 | details |
| #2 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #3 | ACCEPTED | 0.00 s | 1, 3 | details |
| #4 | ACCEPTED | 0.01 s | 1, 3 | details |
| #5 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
| #6 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
| #7 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #8 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #9 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #10 | TIME LIMIT EXCEEDED | -- | 3 | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:23:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | for (int i = 0; i < arr.size();) {
| ~~^~~~~~~~~~~~Code
#include <iostream>
#include <vector>
using namespace std;
int main() {
int n;
cin >> n;
vector<int> arr(n);
for (int i = 0; i < n; i++) {
cin >> arr[i];
}
vector<vector<int>> rounds;
while (!arr.empty()) {
vector<int> curr_round;
int curr = arr[0];
curr_round.push_back(curr);
arr.erase(arr.begin());
for (int i = 0; i < arr.size();) {
if (arr[i] > curr) {
curr_round.push_back(arr[i]);
curr = arr[i];
arr.erase(arr.begin() + i);
} else {
i++;
}
}
rounds.push_back(curr_round);
}
cout << rounds.size() << endl;
for (const auto& round : rounds) {
for (int num : round) {
cout << num << " ";
}
cout << endl;
}
return 0;
}
Test details
Test 1
Group: 1, 3
Verdict: ACCEPTED
| input |
|---|
| 1000 447773962 773442532 122816 137... |
| correct output |
|---|
| 53 447773962 773442532 908719430 ... |
| user output |
|---|
| 53 447773962 773442532 908719430 ... Truncated |
Test 2
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| 1000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| correct output |
|---|
| 1000 1 1 1 1 ... |
| user output |
|---|
| 1000 1 1 1 1 ... Truncated |
Test 3
Group: 1, 3
Verdict: ACCEPTED
| input |
|---|
| 1000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| correct output |
|---|
| 1 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| 1 1 2 3 4 5 6 7 8 9 10 11 12 13 ... Truncated |
Test 4
Group: 1, 3
Verdict: ACCEPTED
| input |
|---|
| 1000 1000 999 998 997 996 995 994 9... |
| correct output |
|---|
| 1000 1000 999 998 997 ... |
| user output |
|---|
| 1000 1000 999 998 997 ... Truncated |
Test 5
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 200000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| correct output |
|---|
| 200000 1 1 1 1 ... |
| user output |
|---|
| (empty) |
Test 6
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 200000 5 2 1 10 6 10 5 5 5 4 4 2 3 7 ... |
| correct output |
|---|
| 20776 5 10 2 6 10 1 5 7 9 10 5 7 8 9 10 ... |
| user output |
|---|
| (empty) |
Test 7
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 200000 591414747 75940263 760367935 9... |
| correct output |
|---|
| 879 591414747 760367935 901888417 ... |
| user output |
|---|
| (empty) |
Test 8
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 200000 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| correct output |
|---|
| 1 1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
| user output |
|---|
| (empty) |
Test 9
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 200000 200000 199999 199998 199997 19... |
| correct output |
|---|
| 200000 200000 199999 199998 199997 ... |
| user output |
|---|
| (empty) |
Test 10
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 200000 199999 199997 199995 199993 19... |
| correct output |
|---|
| 100000 199999 200000 199997 199998 199995 199996 199993 199994 ... |
| user output |
|---|
| (empty) |
