Task: | Moon landing |
Sender: | arnxxau |
Submission time: | 2024-09-23 17:47:31 +0300 |
Language: | C++ (C++11) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.00 s | details |
#2 | ACCEPTED | 0.01 s | details |
#3 | WRONG ANSWER | 0.00 s | details |
#4 | ACCEPTED | 0.00 s | details |
#5 | ACCEPTED | 0.00 s | details |
#6 | ACCEPTED | 0.00 s | details |
#7 | WRONG ANSWER | 0.00 s | details |
#8 | WRONG ANSWER | 0.00 s | details |
#9 | WRONG ANSWER | 0.00 s | details |
#10 | WRONG ANSWER | 0.00 s | details |
#11 | ACCEPTED | 0.00 s | details |
#12 | ACCEPTED | 0.00 s | details |
#13 | ACCEPTED | 0.00 s | details |
#14 | WRONG ANSWER | 0.00 s | details |
#15 | WRONG ANSWER | 0.00 s | details |
#16 | WRONG ANSWER | 0.00 s | details |
#17 | ACCEPTED | 0.00 s | details |
#18 | WRONG ANSWER | 0.00 s | details |
#19 | ACCEPTED | 0.00 s | details |
#20 | WRONG ANSWER | 0.00 s | details |
#21 | ACCEPTED | 0.00 s | details |
#22 | WRONG ANSWER | 0.00 s | details |
#23 | WRONG ANSWER | 0.00 s | details |
#24 | WRONG ANSWER | 0.00 s | details |
#25 | WRONG ANSWER | 0.00 s | details |
#26 | WRONG ANSWER | 0.00 s | details |
#27 | ACCEPTED | 0.00 s | details |
#28 | WRONG ANSWER | 0.00 s | details |
#29 | ACCEPTED | 0.00 s | details |
#30 | WRONG ANSWER | 0.00 s | details |
#31 | WRONG ANSWER | 0.00 s | details |
#32 | WRONG ANSWER | 0.00 s | details |
#33 | WRONG ANSWER | 0.00 s | details |
#34 | WRONG ANSWER | 0.00 s | details |
#35 | WRONG ANSWER | 0.00 s | details |
#36 | WRONG ANSWER | 0.00 s | details |
#37 | ACCEPTED | 0.00 s | details |
#38 | WRONG ANSWER | 0.00 s | details |
#39 | ACCEPTED | 0.00 s | details |
#40 | WRONG ANSWER | 0.00 s | details |
#41 | WRONG ANSWER | 0.00 s | details |
#42 | WRONG ANSWER | 0.00 s | details |
#43 | WRONG ANSWER | 0.00 s | details |
#44 | WRONG ANSWER | 0.00 s | details |
#45 | WRONG ANSWER | 0.00 s | details |
#46 | WRONG ANSWER | 0.00 s | details |
#47 | ACCEPTED | 0.00 s | details |
#48 | WRONG ANSWER | 0.00 s | details |
#49 | ACCEPTED | 0.00 s | details |
#50 | WRONG ANSWER | 0.00 s | details |
#51 | WRONG ANSWER | 0.00 s | details |
#52 | WRONG ANSWER | 0.00 s | details |
#53 | WRONG ANSWER | 0.01 s | details |
#54 | WRONG ANSWER | 0.01 s | details |
#55 | WRONG ANSWER | 0.01 s | details |
#56 | WRONG ANSWER | 0.07 s | details |
#57 | WRONG ANSWER | 0.05 s | details |
#58 | WRONG ANSWER | 0.07 s | details |
#59 | WRONG ANSWER | 0.05 s | details |
#60 | WRONG ANSWER | 0.05 s | details |
#61 | WRONG ANSWER | 0.06 s | details |
#62 | WRONG ANSWER | 0.06 s | details |
#63 | WRONG ANSWER | 0.05 s | details |
#64 | WRONG ANSWER | 0.05 s | details |
Compiler report
input/code.cpp: In function 'std::pair<int, int> longestSubarray(std::vector<int>&, int)': input/code.cpp:22:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare] 22 | for (int i = 0; i < nums.size(); i++) { | ~~^~~~~~~~~~~~~
Code
#include <climits> #include <iostream> #include <vector> #include <algorithm> #include <vector> #include <set> #include <algorithm> using namespace std; pair<int, int> longestSubarray(vector<int>& nums, int limit) { multiset<int> m; int j = 0; int ans = 1; int start = 0; for (int i = 0; i < nums.size(); i++) { m.insert(nums[i]); while(!m.empty() && *m.rbegin()-*m.begin()>limit){ m.erase(m.find(nums[j++])); } if (ans <= i-j+1) start = i; ans=max(ans,i-j+1); } return {start, ans}; } int main() { int n, x; cin >> n >> x; vector<int> m (n); for (int i = 0; i < n; i++) { cin >> m[i]; } pair<int, int> l = longestSubarray(m, x); cout << l.first - 1 << ' ' << l.second << endl; }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
1 1 6 |
correct output |
---|
1 1 |
user output |
---|
-1 1 |
Test 2
Verdict: ACCEPTED
input |
---|
2 10 0 2 |
correct output |
---|
1 2 |
user output |
---|
0 2 |
Test 3
Verdict: WRONG ANSWER
input |
---|
2 4 7 7 |
correct output |
---|
1 2 |
user output |
---|
0 2 |
Test 4
Verdict: ACCEPTED
input |
---|
3 8 5 10 5 |
correct output |
---|
1 3 |
user output |
---|
1 3 |
Test 5
Verdict: ACCEPTED
input |
---|
3 10 3 6 7 |
correct output |
---|
1 3 |
user output |
---|
1 3 |
Test 6
Verdict: ACCEPTED
input |
---|
3 0 6 9 5 |
correct output |
---|
1 1 |
user output |
---|
1 1 |
Test 7
Verdict: WRONG ANSWER
input |
---|
4 3 8 5 1 10 |
correct output |
---|
1 2 |
user output |
---|
0 2 |
Test 8
Verdict: WRONG ANSWER
input |
---|
4 9 6 3 8 7 |
correct output |
---|
1 4 |
user output |
---|
2 4 |
Test 9
Verdict: WRONG ANSWER
input |
---|
4 10 1 9 6 8 |
correct output |
---|
1 4 |
user output |
---|
2 4 |
Test 10
Verdict: WRONG ANSWER
input |
---|
5 6 6 7 9 6 9 |
correct output |
---|
1 5 |
user output |
---|
3 5 |
Test 11
Verdict: ACCEPTED
input |
---|
5 4 10 7 10 0 1 |
correct output |
---|
1 3 |
user output |
---|
1 3 |
Test 12
Verdict: ACCEPTED
input |
---|
5 4 2 0 10 6 10 |
correct output |
---|
3 3 |
user output |
---|
3 3 |
Test 13
Verdict: ACCEPTED
input |
---|
5 6 0 7 9 3 1 |
correct output |
---|
2 3 |
user output |
---|
2 3 |
Test 14
Verdict: WRONG ANSWER
input |
---|
5 10 9 6 1 10 9 |
correct output |
---|
1 5 |
user output |
---|
3 5 |
Test 15
Verdict: WRONG ANSWER
input |
---|
5 2 0 9 9 2 4 |
correct output |
---|
2 2 |
user output |
---|
3 2 |
Test 16
Verdict: WRONG ANSWER
input |
---|
5 9 10 3 2 9 0 |
correct output |
---|
1 4 |
user output |
---|
3 4 |
Test 17
Verdict: ACCEPTED
input |
---|
5 0 2 8 3 4 10 |
correct output |
---|
1 1 |
user output |
---|
3 1 |
Test 18
Verdict: WRONG ANSWER
input |
---|
5 9 0 10 2 9 4 |
correct output |
---|
2 4 |
user output |
---|
3 4 |
Test 19
Verdict: ACCEPTED
input |
---|
5 0 4 5 5 5 0 |
correct output |
---|
2 3 |
user output |
---|
2 3 |
Test 20
Verdict: WRONG ANSWER
input |
---|
10 6 6 7 9 6 9 5 9 4 6 7 |
correct output |
---|
1 10 |
user output |
---|
8 10 |
Test 21
Verdict: ACCEPTED
input |
---|
10 4 10 7 10 0 1 3 10 1 2 1 |
correct output |
---|
1 3 |
user output |
---|
8 3 |
Test 22
Verdict: WRONG ANSWER
input |
---|
10 4 2 0 10 6 10 4 5 4 3 3 |
correct output |
---|
6 5 |
user output |
---|
8 5 |
Test 23
Verdict: WRONG ANSWER
input |
---|
10 6 0 7 9 3 1 5 6 9 4 9 |
correct output |
---|
6 5 |
user output |
---|
8 5 |
Test 24
Verdict: WRONG ANSWER
input |
---|
10 10 9 6 1 10 9 7 6 7 6 2 |
correct output |
---|
1 10 |
user output |
---|
8 10 |
Test 25
Verdict: WRONG ANSWER
input |
---|
10 2 0 9 9 2 4 10 10 5 0 6 |
correct output |
---|
2 2 |
user output |
---|
5 2 |
Test 26
Verdict: WRONG ANSWER
input |
---|
10 9 10 3 2 9 0 0 4 1 10 6 |
correct output |
---|
2 7 |
user output |
---|
6 7 |
Test 27
Verdict: ACCEPTED
input |
---|
10 0 2 8 3 4 10 7 5 10 3 5 |
correct output |
---|
1 1 |
user output |
---|
8 1 |
Test 28
Verdict: WRONG ANSWER
input |
---|
10 9 0 10 2 9 4 5 8 2 4 0 |
correct output |
---|
2 8 |
user output |
---|
8 8 |
Test 29
Verdict: ACCEPTED
input |
---|
10 0 4 5 5 5 0 1 3 1 0 2 |
correct output |
---|
2 3 |
user output |
---|
2 3 |
Test 30
Verdict: WRONG ANSWER
input |
---|
100 589284011 636562059 767928733 906523440 ... |
correct output |
---|
1 12 |
user output |
---|
10 12 |
Test 31
Verdict: WRONG ANSWER
input |
---|
100 447773961 773442531 122815 137572578 324... |
correct output |
---|
2 10 |
user output |
---|
9 10 |
Test 32
Verdict: WRONG ANSWER
input |
---|
100 468145962 198730371 27838075 590195589 4... |
correct output |
---|
60 11 |
user output |
---|
68 11 |
Test 33
Verdict: WRONG ANSWER
input |
---|
100 591414746 75940262 760367934 901888416 3... |
correct output |
---|
34 14 |
user output |
---|
45 14 |
Test 34
Verdict: WRONG ANSWER
input |
---|
100 967034923 587586157 185430193 918715994 ... |
correct output |
---|
37 64 |
user output |
---|
98 64 |
Test 35
Verdict: WRONG ANSWER
input |
---|
100 238363352 59249203 934941691 892631471 2... |
correct output |
---|
34 5 |
user output |
---|
36 5 |
Test 36
Verdict: WRONG ANSWER
input |
---|
100 958701282 356460600 224848373 881788058 ... |
correct output |
---|
1 100 |
user output |
---|
98 100 |
Test 37
Verdict: ACCEPTED
input |
---|
100 81935403 244103473 837431430 342493821 ... |
correct output |
---|
21 3 |
user output |
---|
96 3 |
Test 38
Verdict: WRONG ANSWER
input |
---|
100 937837680 11934037 257096282 933290529 4... |
correct output |
---|
29 54 |
user output |
---|
80 54 |
Test 39
Verdict: ACCEPTED
input |
---|
100 11139167 391337047 538883743 535937149 ... |
correct output |
---|
2 3 |
user output |
---|
2 3 |
Test 40
Verdict: WRONG ANSWER
input |
---|
200 589284011 636562059 767928733 906523440 ... |
correct output |
---|
99 15 |
user output |
---|
111 15 |
Test 41
Verdict: WRONG ANSWER
input |
---|
200 447773961 773442531 122815 137572578 324... |
correct output |
---|
2 10 |
user output |
---|
9 10 |
Test 42
Verdict: WRONG ANSWER
input |
---|
200 468145962 198730371 27838075 590195589 4... |
correct output |
---|
60 11 |
user output |
---|
68 11 |
Test 43
Verdict: WRONG ANSWER
input |
---|
200 591414746 75940262 760367934 901888416 3... |
correct output |
---|
104 24 |
user output |
---|
125 24 |
Test 44
Verdict: WRONG ANSWER
input |
---|
200 967034923 587586157 185430193 918715994 ... |
correct output |
---|
37 111 |
user output |
---|
145 111 |
Test 45
Verdict: WRONG ANSWER
input |
---|
200 238363352 59249203 934941691 892631471 2... |
correct output |
---|
34 5 |
user output |
---|
36 5 |
Test 46
Verdict: WRONG ANSWER
input |
---|
200 958701282 356460600 224848373 881788058 ... |
correct output |
---|
1 138 |
user output |
---|
136 138 |
Test 47
Verdict: ACCEPTED
input |
---|
200 81935403 244103473 837431430 342493821 ... |
correct output |
---|
21 3 |
user output |
---|
198 3 |
Test 48
Verdict: WRONG ANSWER
input |
---|
200 937837680 11934037 257096282 933290529 4... |
correct output |
---|
84 66 |
user output |
---|
147 66 |
Test 49
Verdict: ACCEPTED
input |
---|
200 11139167 391337047 538883743 535937149 ... |
correct output |
---|
2 3 |
user output |
---|
2 3 |
Test 50
Verdict: WRONG ANSWER
input |
---|
1000 589284011 636562059 767928733 906523440 ... |
correct output |
---|
99 15 |
user output |
---|
111 15 |
Test 51
Verdict: WRONG ANSWER
input |
---|
1000 447773961 773442531 122815 137572578 324... |
correct output |
---|
2 10 |
user output |
---|
719 10 |
Test 52
Verdict: WRONG ANSWER
input |
---|
1000 468145962 198730371 27838075 590195589 4... |
correct output |
---|
60 11 |
user output |
---|
752 11 |
Test 53
Verdict: WRONG ANSWER
input |
---|
10000 591414746 75940262 760367934 901888416 3... |
correct output |
---|
104 24 |
user output |
---|
125 24 |
Test 54
Verdict: WRONG ANSWER
input |
---|
10000 967034923 587586157 185430193 918715994 ... |
correct output |
---|
3660 279 |
user output |
---|
3936 279 |
Test 55
Verdict: WRONG ANSWER
input |
---|
10000 238363352 59249203 934941691 892631471 2... |
correct output |
---|
325 9 |
user output |
---|
331 9 |
Test 56
Verdict: WRONG ANSWER
input |
---|
100000 958701282 356460600 224848373 881788058 ... |
correct output |
---|
66493 302 |
user output |
---|
66792 302 |
Test 57
Verdict: WRONG ANSWER
input |
---|
100000 81935403 244103473 837431430 342493821 ... |
correct output |
---|
28066 7 |
user output |
---|
28070 7 |
Test 58
Verdict: WRONG ANSWER
input |
---|
100000 937837680 11934037 257096282 933290529 4... |
correct output |
---|
91851 177 |
user output |
---|
92025 177 |
Test 59
Verdict: WRONG ANSWER
input |
---|
100000 11139167 391337047 538883743 535937149 ... |
correct output |
---|
84138 4 |
user output |
---|
84139 4 |
Test 60
Verdict: WRONG ANSWER
input |
---|
100000 239756970 350744379 561742366 59793553 5... |
correct output |
---|
94284 12 |
user output |
---|
94293 12 |
Test 61
Verdict: WRONG ANSWER
input |
---|
100000 316394139 195182396 569713187 906489185 ... |
correct output |
---|
12844 13 |
user output |
---|
12854 13 |
Test 62
Verdict: WRONG ANSWER
input |
---|
100000 698334026 81615940 542726430 464528081 9... |
correct output |
---|
28811 40 |
user output |
---|
28848 40 |
Test 63
Verdict: WRONG ANSWER
input |
---|
100000 104725911 462211739 817385661 443179352 ... |
correct output |
---|
46788 9 |
user output |
---|
46794 9 |
Test 64
Verdict: WRONG ANSWER
input |
---|
100000 20 13 15 11 10 13 16 17 18 15 18 ... |
correct output |
---|
1 100000 |
user output |
---|
99998 100000 |