| Task: | Establish equality |
| Sender: | ollipauna |
| Submission time: | 2025-09-08 17:49:15 +0300 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | RUNTIME ERROR |
| test | verdict | time | |
|---|---|---|---|
| #1 | RUNTIME ERROR | 0.00 s | details |
| #2 | ACCEPTED | 0.00 s | details |
| #3 | ACCEPTED | 0.00 s | details |
| #4 | ACCEPTED | 0.00 s | details |
| #5 | WRONG ANSWER | 0.00 s | details |
| #6 | WRONG ANSWER | 0.00 s | details |
| #7 | WRONG ANSWER | 0.00 s | details |
| #8 | ACCEPTED | 0.00 s | details |
| #9 | WRONG ANSWER | 0.00 s | details |
| #10 | WRONG ANSWER | 0.00 s | details |
| #11 | WRONG ANSWER | 0.00 s | details |
| #12 | ACCEPTED | 0.00 s | details |
| #13 | WRONG ANSWER | 0.00 s | details |
| #14 | WRONG ANSWER | 0.00 s | details |
| #15 | ACCEPTED | 0.00 s | details |
| #16 | WRONG ANSWER | 0.00 s | details |
| #17 | WRONG ANSWER | 0.00 s | details |
| #18 | WRONG ANSWER | 0.00 s | details |
| #19 | WRONG ANSWER | 0.00 s | details |
| #20 | WRONG ANSWER | 0.00 s | details |
| #21 | WRONG ANSWER | 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 | WRONG ANSWER | 0.00 s | details |
| #28 | WRONG ANSWER | 0.00 s | details |
| #29 | WRONG ANSWER | 0.00 s | details |
| #30 | WRONG ANSWER | 0.00 s | details |
| #31 | WRONG ANSWER | 0.03 s | details |
| #32 | WRONG ANSWER | 0.02 s | details |
| #33 | WRONG ANSWER | 0.02 s | details |
| #34 | WRONG ANSWER | 0.03 s | details |
| #35 | WRONG ANSWER | 0.03 s | details |
| #36 | WRONG ANSWER | 0.12 s | details |
| #37 | WRONG ANSWER | 0.09 s | details |
| #38 | WRONG ANSWER | 0.09 s | details |
| #39 | WRONG ANSWER | 0.09 s | details |
| #40 | WRONG ANSWER | 0.08 s | details |
| #41 | RUNTIME ERROR | 0.53 s | details |
| #42 | RUNTIME ERROR | 0.53 s | details |
| #43 | RUNTIME ERROR | 0.53 s | details |
| #44 | RUNTIME ERROR | 0.53 s | details |
| #45 | RUNTIME ERROR | 0.54 s | details |
| #46 | RUNTIME ERROR | 0.54 s | details |
| #47 | RUNTIME ERROR | 0.55 s | details |
| #48 | RUNTIME ERROR | 0.58 s | details |
| #49 | RUNTIME ERROR | 0.60 s | details |
| #50 | RUNTIME ERROR | 0.63 s | details |
| #51 | RUNTIME ERROR | 0.69 s | details |
| #52 | RUNTIME ERROR | 0.69 s | details |
| #53 | RUNTIME ERROR | 0.69 s | details |
| #54 | RUNTIME ERROR | 0.69 s | details |
| #55 | RUNTIME ERROR | 0.69 s | details |
Compiler report
input/code.cpp: In function 'void balance(std::vector<long long int>&)':
input/code.cpp:37:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
37 | while (i < new_bottles.size() & new_bottles.size() != bottles.size())
| ~~^~~~~~~~~~~~~~~~~~~~
input/code.cpp:37:18: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
input/code.cpp:14:8: warning: unused variable 'max' [-Wunused-variable]
14 | ll max = 0;
| ^~~
input/code.cpp:15:8: warning: unused variable 'min' [-Wunused-variable]
15 | ll min = 0;
| ^~~Code
#include<iostream>
#include<queue>
#include<algorithm>
#include <unordered_map>
#include <vector>
typedef long long ll;
using namespace std;
void balance(vector<ll> &bottles)
{
vector<ll> new_bottles(bottles.begin() + 1, bottles.end() - 1);
ll diff = bottles[bottles.size() - 1] - bottles[0];
ll max = 0;
ll min = 0;
if (diff > 1)
{
if (diff > 4)
{
ll change = diff / 4;
bottles[0] += change;
bottles[bottles.size() - 1] -= change * 2;
}
else
{
bottles[0] += 1;
bottles[bottles.size() - 1] -= 2;
}
ll max = bottles[bottles.size() - 1];
ll min = bottles[0];
if (max < min) swap(max, min);
int i = 0;
while (i < new_bottles.size() & new_bottles.size() != bottles.size())
{
if (min < new_bottles[i])
{
new_bottles.insert(new_bottles.begin() + i, min);
++i;
}
if (max < new_bottles[i])
{
new_bottles.insert(new_bottles.begin() + i, max);
break;
}
++i;
}
if (bottles.size() - new_bottles.size() == 2)
{
new_bottles.push_back(min);
new_bottles.push_back(max);
}
if (bottles.size() - new_bottles.size() == 1)
{
new_bottles.push_back(max);
}
bottles = new_bottles;
balance(bottles);
}
}
int main()
{
ll citizes;
cin >> citizes;
std::vector<ll> bottles;
ll n;
while (cin >> n)
{
bottles.push_back(n);
}
std::sort(bottles.begin(), bottles.end());
balance(bottles);
ll _min = *std::min_element(bottles.begin(), bottles.end());
cout << _min << '\n';
return 0;
}Test details
Test 1
Verdict: RUNTIME ERROR
| input |
|---|
| 1 4 |
| correct output |
|---|
| 4 |
| user output |
|---|
| (empty) |
Error:
terminate called after throwing an instance of 'std::length_error' what(): cannot creat...
Test 2
Verdict: ACCEPTED
| input |
|---|
| 2 4 2 |
| correct output |
|---|
| 2 |
| user output |
|---|
| 2 |
Test 3
Verdict: ACCEPTED
| input |
|---|
| 2 6 0 |
| correct output |
|---|
| 2 |
| user output |
|---|
| 2 |
Test 4
Verdict: ACCEPTED
| input |
|---|
| 3 10 9 6 |
| correct output |
|---|
| 7 |
| user output |
|---|
| 7 |
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 6 2 0 9 9 2 4 |
| correct output |
|---|
| 3 |
| user output |
|---|
| 2 |
Test 6
Verdict: WRONG ANSWER
| input |
|---|
| 10 4 10 7 10 0 1 3 10 1 2 |
| correct output |
|---|
| 3 |
| user output |
|---|
| 2 |
Test 7
Verdict: WRONG ANSWER
| input |
|---|
| 10 4 2 0 10 6 10 4 5 4 3 |
| correct output |
|---|
| 4 |
| user output |
|---|
| 2 |
Test 8
Verdict: ACCEPTED
| input |
|---|
| 10 6 0 7 9 3 1 5 6 9 4 |
| correct output |
|---|
| 3 |
| user output |
|---|
| 3 |
Test 9
Verdict: WRONG ANSWER
| input |
|---|
| 10 10 9 6 1 10 9 7 6 7 6 |
| correct output |
|---|
| 6 |
| user output |
|---|
| 3 |
Test 10
Verdict: WRONG ANSWER
| input |
|---|
| 10 2 0 9 9 2 4 10 10 5 0 |
| correct output |
|---|
| 3 |
| user output |
|---|
| 2 |
Test 11
Verdict: WRONG ANSWER
| input |
|---|
| 10 1 0 0 7 5 2 7 10 4 1 |
| correct output |
|---|
| 2 |
| user output |
|---|
| 1 |
Test 12
Verdict: ACCEPTED
| input |
|---|
| 10 1 4 8 9 2 0 5 7 0 3 |
| correct output |
|---|
| 2 |
| user output |
|---|
| 2 |
Test 13
Verdict: WRONG ANSWER
| input |
|---|
| 10 8 6 2 9 9 9 10 1 10 8 |
| correct output |
|---|
| 6 |
| user output |
|---|
| 3 |
Test 14
Verdict: WRONG ANSWER
| input |
|---|
| 10 5 10 8 7 9 4 0 1 3 2 |
| correct output |
|---|
| 3 |
| user output |
|---|
| 2 |
Test 15
Verdict: ACCEPTED
| input |
|---|
| 10 9 8 1 6 0 1 3 9 3 10 |
| correct output |
|---|
| 3 |
| user output |
|---|
| 3 |
Test 16
Verdict: WRONG ANSWER
| input |
|---|
| 100 417 998 721 933 0 128 302 1000... |
| correct output |
|---|
| 402 |
| user output |
|---|
| 315 |
Test 17
Verdict: WRONG ANSWER
| input |
|---|
| 100 436 185 25 932 550 948 435 485... |
| correct output |
|---|
| 402 |
| user output |
|---|
| 342 |
Test 18
Verdict: WRONG ANSWER
| input |
|---|
| 100 551 70 708 840 291 121 511 569... |
| correct output |
|---|
| 391 |
| user output |
|---|
| 325 |
Test 19
Verdict: WRONG ANSWER
| input |
|---|
| 100 967 901 547 172 973 856 715 60... |
| correct output |
|---|
| 395 |
| user output |
|---|
| 326 |
Test 20
Verdict: WRONG ANSWER
| input |
|---|
| 100 222 55 871 832 206 364 919 980... |
| correct output |
|---|
| 418 |
| user output |
|---|
| 341 |
Test 21
Verdict: WRONG ANSWER
| input |
|---|
| 100 180 68 19 665 463 194 725 927 ... |
| correct output |
|---|
| 401 |
| user output |
|---|
| 319 |
Test 22
Verdict: WRONG ANSWER
| input |
|---|
| 100 154 446 740 874 263 86 534 724... |
| correct output |
|---|
| 409 |
| user output |
|---|
| 335 |
Test 23
Verdict: WRONG ANSWER
| input |
|---|
| 100 778 607 237 860 825 893 966 17... |
| correct output |
|---|
| 419 |
| user output |
|---|
| 349 |
Test 24
Verdict: WRONG ANSWER
| input |
|---|
| 100 514 922 773 659 871 366 8 149 ... |
| correct output |
|---|
| 410 |
| user output |
|---|
| 342 |
Test 25
Verdict: WRONG ANSWER
| input |
|---|
| 100 849 814 179 591 54 111 361 819... |
| correct output |
|---|
| 381 |
| user output |
|---|
| 307 |
Test 26
Verdict: WRONG ANSWER
| input |
|---|
| 100 48 800 289 680 721 36 21 952 2... |
| correct output |
|---|
| 446 |
| user output |
|---|
| 375 |
Test 27
Verdict: WRONG ANSWER
| input |
|---|
| 100 208 702 482 731 420 638 860 78... |
| correct output |
|---|
| 431 |
| user output |
|---|
| 350 |
Test 28
Verdict: WRONG ANSWER
| input |
|---|
| 100 517 669 947 185 766 782 282 57... |
| correct output |
|---|
| 417 |
| user output |
|---|
| 341 |
Test 29
Verdict: WRONG ANSWER
| input |
|---|
| 100 960 294 700 52 1000 317 220 98... |
| correct output |
|---|
| 483 |
| user output |
|---|
| 422 |
Test 30
Verdict: WRONG ANSWER
| input |
|---|
| 100 870 696 582 433 279 98 186 181... |
| correct output |
|---|
| 433 |
| user output |
|---|
| 372 |
Test 31
Verdict: WRONG ANSWER
| input |
|---|
| 1000 549 593 715 845 603 858 545 84... |
| correct output |
|---|
| 417 |
| user output |
|---|
| 349 |
Test 32
Verdict: WRONG ANSWER
| input |
|---|
| 1000 417 998 721 933 0 128 302 1000... |
| correct output |
|---|
| 409 |
| user output |
|---|
| 334 |
Test 33
Verdict: WRONG ANSWER
| input |
|---|
| 1000 436 185 25 932 550 948 435 485... |
| correct output |
|---|
| 409 |
| user output |
|---|
| 345 |
Test 34
Verdict: WRONG ANSWER
| input |
|---|
| 1000 551 70 708 840 291 121 511 569... |
| correct output |
|---|
| 416 |
| user output |
|---|
| 348 |
Test 35
Verdict: WRONG ANSWER
| input |
|---|
| 1000 967 901 547 172 973 856 715 60... |
| correct output |
|---|
| 420 |
| user output |
|---|
| 350 |
Test 36
Verdict: WRONG ANSWER
| input |
|---|
| 2000 238363352 59249203 934941691 8... |
| correct output |
|---|
| 408637955 |
| user output |
|---|
| 338989386 |
Test 37
Verdict: WRONG ANSWER
| input |
|---|
| 2000 958701282 356460600 224848373 ... |
| correct output |
|---|
| 419252506 |
| user output |
|---|
| 352254453 |
Test 38
Verdict: WRONG ANSWER
| input |
|---|
| 2000 81935403 244103473 837431430 3... |
| correct output |
|---|
| 416082617 |
| user output |
|---|
| 350886126 |
Test 39
Verdict: WRONG ANSWER
| input |
|---|
| 2000 937837680 11934037 257096282 9... |
| correct output |
|---|
| 417515719 |
| user output |
|---|
| 351820495 |
Test 40
Verdict: WRONG ANSWER
| input |
|---|
| 2000 11139167 391337047 538883743 5... |
| correct output |
|---|
| 409258945 |
| user output |
|---|
| 342329205 |
Test 41
Verdict: RUNTIME ERROR
| input |
|---|
| 10000 589284011 636562059 767928733 ... |
| correct output |
|---|
| 413957321 |
| user output |
|---|
| (empty) |
Test 42
Verdict: RUNTIME ERROR
| input |
|---|
| 20000 447773961 773442531 122815 137... |
| correct output |
|---|
| 414852078 |
| user output |
|---|
| (empty) |
Test 43
Verdict: RUNTIME ERROR
| input |
|---|
| 30000 468145962 198730371 27838075 5... |
| correct output |
|---|
| 410179075 |
| user output |
|---|
| (empty) |
Test 44
Verdict: RUNTIME ERROR
| input |
|---|
| 40000 591414746 75940262 760367934 9... |
| correct output |
|---|
| 414505355 |
| user output |
|---|
| (empty) |
Test 45
Verdict: RUNTIME ERROR
| input |
|---|
| 50000 967034923 587586157 185430193 ... |
| correct output |
|---|
| 412022071 |
| user output |
|---|
| (empty) |
Test 46
Verdict: RUNTIME ERROR
| input |
|---|
| 60000 238363352 59249203 934941691 8... |
| correct output |
|---|
| 414871380 |
| user output |
|---|
| (empty) |
Test 47
Verdict: RUNTIME ERROR
| input |
|---|
| 70000 958701282 356460600 224848373 ... |
| correct output |
|---|
| 413955399 |
| user output |
|---|
| (empty) |
Test 48
Verdict: RUNTIME ERROR
| input |
|---|
| 80000 81935403 244103473 837431430 3... |
| correct output |
|---|
| 414719178 |
| user output |
|---|
| (empty) |
Test 49
Verdict: RUNTIME ERROR
| input |
|---|
| 90000 937837680 11934037 257096282 9... |
| correct output |
|---|
| 412407588 |
| user output |
|---|
| (empty) |
Test 50
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 11139167 391337047 538883743 5... |
| correct output |
|---|
| 413339299 |
| user output |
|---|
| (empty) |
Test 51
Verdict: RUNTIME ERROR
| input |
|---|
| 200000 589284011 636562059 767928733 ... |
| correct output |
|---|
| 414309243 |
| user output |
|---|
| (empty) |
Test 52
Verdict: RUNTIME ERROR
| input |
|---|
| 200000 447773961 773442531 122815 137... |
| correct output |
|---|
| 413259631 |
| user output |
|---|
| (empty) |
Test 53
Verdict: RUNTIME ERROR
| input |
|---|
| 200000 468145962 198730371 27838075 5... |
| correct output |
|---|
| 413293056 |
| user output |
|---|
| (empty) |
Test 54
Verdict: RUNTIME ERROR
| input |
|---|
| 200000 591414746 75940262 760367934 9... |
| correct output |
|---|
| 414827553 |
| user output |
|---|
| (empty) |
Test 55
Verdict: RUNTIME ERROR
| input |
|---|
| 200000 967034923 587586157 185430193 ... |
| correct output |
|---|
| 412998578 |
| user output |
|---|
| (empty) |
