| Task: | Aita |
| Sender: | |
| Submission time: | 2015-07-19 17:59:26 +0300 |
| Language: | C++ |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | TIME LIMIT EXCEEDED | 0 |
| #3 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.08 s | 1 | details |
| #2 | ACCEPTED | 0.08 s | 1 | details |
| #3 | WRONG ANSWER | 0.09 s | 1 | details |
| #4 | ACCEPTED | 0.08 s | 1 | details |
| #5 | WRONG ANSWER | 0.08 s | 1 | details |
| #6 | TIME LIMIT EXCEEDED | -- | 2 | details |
| #7 | TIME LIMIT EXCEEDED | -- | 2 | details |
| #8 | TIME LIMIT EXCEEDED | -- | 2 | details |
| #9 | TIME LIMIT EXCEEDED | -- | 2 | details |
| #10 | WRONG ANSWER | 0.08 s | 2 | details |
| #11 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #12 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #13 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #14 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #15 | TIME LIMIT EXCEEDED | -- | 3 | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:29:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int j = 0; j < woods.size(); j++)
^
input/code.cpp:30:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < woods.size(); i++) {
^Code
// CPPBook.cpp : Defines the entry point for the console application.
//
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main() {
int n = 0, k=0;
cin >> n >> k;
vector<int> woods;
for (int i = 0; i < n; i++) {
woods.push_back(i+1);
}
vector<int> result{woods[0]};
int index = 0;
int woodNow = result[index];
woods[index] = -1;
index++;
for (int j = 0; j < woods.size(); j++)
for (int i = 0; i < woods.size(); i++) {
if (woods[i] > 0 && abs(woodNow - woods[i]) >= k) {
result.push_back(woods[i]);
woodNow = woods[i];
woods[i] = -1;
}
}
if (result.size() < woods.size()) {
cout << "QAQ" << endl;
}
else {
for (int l : result)
cout << l << " ";
cout << endl;
}
return EXIT_SUCCESS;
}
Test details
Test 1
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 2 2 |
| correct output |
|---|
| QAQ |
| user output |
|---|
| QAQ |
Test 2
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 3 2 |
| correct output |
|---|
| QAQ |
| user output |
|---|
| QAQ |
Test 3
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 4 2 |
| correct output |
|---|
| 3 1 4 2 |
| user output |
|---|
| QAQ |
Test 4
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 7 4 |
| correct output |
|---|
| QAQ |
| user output |
|---|
| QAQ |
Test 5
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 8 4 |
| correct output |
|---|
| 5 1 6 2 7 3 8 4 |
| user output |
|---|
| QAQ |
Test 6
Group: 2
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 80476 2 |
| correct output |
|---|
| 40239 1 40240 2 40241 3 40242 ... |
| user output |
|---|
| (empty) |
Test 7
Group: 2
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 68652 2 |
| correct output |
|---|
| 34327 1 34328 2 34329 3 34330 ... |
| user output |
|---|
| (empty) |
Test 8
Group: 2
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 62735 2 |
| correct output |
|---|
| 31368 1 31369 2 31370 3 31371 ... |
| user output |
|---|
| (empty) |
Test 9
Group: 2
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 71954 2 |
| correct output |
|---|
| 35978 1 35979 2 35980 3 35981 ... |
| user output |
|---|
| (empty) |
Test 10
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 4 2 |
| correct output |
|---|
| 3 1 4 2 |
| user output |
|---|
| QAQ |
Test 11
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 89814 3 |
| correct output |
|---|
| 44908 1 44909 2 44910 3 44911 ... |
| user output |
|---|
| (empty) |
Test 12
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 91140 5 |
| correct output |
|---|
| 45571 1 45572 2 45573 3 45574 ... |
| user output |
|---|
| (empty) |
Test 13
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 66703 16675 |
| correct output |
|---|
| 33352 1 33353 2 33354 3 33355 ... |
| user output |
|---|
| (empty) |
Test 14
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 66666 33333 |
| correct output |
|---|
| 33334 1 33335 2 33336 3 33337 ... |
| user output |
|---|
| (empty) |
Test 15
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 66666 33334 |
| correct output |
|---|
| QAQ |
| user output |
|---|
| (empty) |
