Task: | Counting ones |
Sender: | ilyas.ben |
Submission time: | 2024-10-30 10:35:03 +0200 |
Language: | C++ (C++20) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.00 s | details |
#2 | ACCEPTED | 0.00 s | details |
#3 | ACCEPTED | 0.00 s | details |
#4 | ACCEPTED | 0.00 s | details |
#5 | ACCEPTED | 0.00 s | details |
#6 | WRONG ANSWER | 0.00 s | details |
#7 | WRONG ANSWER | 0.55 s | details |
#8 | WRONG ANSWER | 0.56 s | details |
#9 | WRONG ANSWER | 0.55 s | details |
#10 | WRONG ANSWER | 0.55 s | details |
Code
#include <iostream> #include <sstream> #include <vector> #include <array> using namespace std; bool isPairChecked(array<long long, 2> pair, std::vector<array<long long, 2>> &results) { for (const auto &storedPair : results) { if ((storedPair[0] == pair[0] && storedPair[1] == pair[1]) || (storedPair[0] == pair[1] && storedPair[1] == pair[0])) { return true; } } return false; } void printPairs(const std::vector<array<long long, 2>> &results) { for (const auto &pair : results) { cout << pair[0] << " " << pair[1] << endl; } } int main(int argc, char const *argv[]) { int n, max = 0; string input; std::vector<array<long long, 2>> results; // input n and the cin >> n; cin.ignore(); getline(cin, input); long long numbers[n]; // assign numbers to the numbers arrays istringstream stream(input); long long number; int index = 0; while (stream >> number && index < n) { numbers[index++] = number; } // verifying the product // std::vector<int[2]> resultsMemory; for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { int x = __builtin_popcount(numbers[i] * numbers[j]); array<long long, 2> pair = {numbers[i], numbers[j]}; if (x > max) { results.clear(); max = x; } if (x == max) { if (!isPairChecked(pair, results)) { results.push_back(pair); } } } } cout << max << endl; printPairs(results); return 0; } /* std::cout << n << " "; cout << numbers[17658]; */ // soit je cree un vector des couples déjà visités // soit je verifie avec le vecteur déjà crée
Test details
Test 1
Verdict: ACCEPTED
input |
---|
5 42 100 73 94 1 |
correct output |
---|
9 42 73 |
user output |
---|
9 42 73 |
Test 2
Verdict: ACCEPTED
input |
---|
5 44 19 3 94 55 |
correct output |
---|
8 19 94 |
user output |
---|
8 19 94 |
Test 3
Verdict: ACCEPTED
input |
---|
10 551 71 709 840 291 122 511 570... |
correct output |
---|
15 893 438 |
user output |
---|
15 893 438 |
Test 4
Verdict: ACCEPTED
input |
---|
10 968 901 548 173 973 856 715 61... |
correct output |
---|
14 715 698 |
user output |
---|
14 715 698 |
Test 5
Verdict: ACCEPTED
input |
---|
100 221994 55181 870733 831328 206... |
correct output |
---|
29 396737 649459 |
user output |
---|
28 14581 368163 |
Test 6
Verdict: WRONG ANSWER
input |
---|
100 892861 947477 331980 209407 82... |
correct output |
---|
29 825210 578859 |
user output |
---|
24 724329 990225 388220 770881 |
Test 7
Verdict: WRONG ANSWER
input |
---|
10000 76308292 227339075 779918796 3... |
correct output |
---|
50 978548139 589096701 |
user output |
---|
30 596018291 381828933 |
Test 8
Verdict: WRONG ANSWER
input |
---|
10000 873429404 968540665 239439572 ... |
correct output |
---|
49 661547021 435157931 |
user output |
---|
30 701341503 612237185 119606367 53719137 |
Test 9
Verdict: WRONG ANSWER
input |
---|
10000 10374159 364461027 501874596 4... |
correct output |
---|
50 313852607 889662850 |
user output |
---|
30 823836911 256366065 334133825 71568943 |
Test 10
Verdict: WRONG ANSWER
input |
---|
10000 771320644 298761159 20751947 4... |
correct output |
---|
49 516789275 257079921 |
user output |
---|
30 50663103 518491267 303648563 140295173 |