結果
問題 | No.2510 Six Cube Sum Counting |
ユーザー | GOTKAKO |
提出日時 | 2023-10-21 17:19:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 762 ms / 4,000 ms |
コード長 | 1,227 bytes |
コンパイル時間 | 1,888 ms |
コンパイル使用メモリ | 180,304 KB |
実行使用メモリ | 134,504 KB |
最終ジャッジ日時 | 2024-09-21 18:35:29 |
合計ジャッジ時間 | 24,384 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 677 ms
134,372 KB |
testcase_01 | AC | 681 ms
134,376 KB |
testcase_02 | AC | 743 ms
134,372 KB |
testcase_03 | AC | 689 ms
134,372 KB |
testcase_04 | AC | 679 ms
134,492 KB |
testcase_05 | AC | 689 ms
134,444 KB |
testcase_06 | AC | 698 ms
134,452 KB |
testcase_07 | AC | 679 ms
134,388 KB |
testcase_08 | AC | 693 ms
134,252 KB |
testcase_09 | AC | 691 ms
134,260 KB |
testcase_10 | AC | 696 ms
134,504 KB |
testcase_11 | AC | 686 ms
134,156 KB |
testcase_12 | AC | 676 ms
134,368 KB |
testcase_13 | AC | 689 ms
134,376 KB |
testcase_14 | AC | 672 ms
134,500 KB |
testcase_15 | AC | 680 ms
134,376 KB |
testcase_16 | AC | 701 ms
134,344 KB |
testcase_17 | AC | 704 ms
134,244 KB |
testcase_18 | AC | 689 ms
134,220 KB |
testcase_19 | AC | 688 ms
134,372 KB |
testcase_20 | AC | 723 ms
134,376 KB |
testcase_21 | AC | 727 ms
134,392 KB |
testcase_22 | AC | 744 ms
134,500 KB |
testcase_23 | AC | 726 ms
134,372 KB |
testcase_24 | AC | 727 ms
134,428 KB |
testcase_25 | AC | 687 ms
134,372 KB |
testcase_26 | AC | 691 ms
134,372 KB |
testcase_27 | AC | 713 ms
134,372 KB |
testcase_28 | AC | 688 ms
134,356 KB |
testcase_29 | AC | 762 ms
134,384 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:21:15: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 21 | auto &[cube1,a1,b1,c1] = abc.at(l); | ^ main.cpp:26:19: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 26 | auto &[cube2,a2,b2,c2] = abc.at(r); | ^ main.cpp:30:15: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 30 | auto &[cube2,a2,b2,c2] = abc.at(r); | ^ main.cpp:35:19: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 35 | auto &[cube3,a3,b3,c3] = abc.at(rl); | ^ main.cpp:42:19: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 42 | auto &[cube3,a3,b3,c3] = abc.at(i); | ^
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int X; cin >> X; vector<int> C(301); vector<tuple<int,int,int,int>> abc; for(int i=0; i<301; i++) C.at(i) = i*i*i; for(int a=0; a<=300; a++) for(int b=a; b<=300; b++) for(int c=b; c<=300; c++){ int cube = C.at(a)+C.at(b)+C.at(c); abc.push_back({cube,a,b,c}); } sort(abc.begin(),abc.end()); int answer = 0; int l = 0,r = abc.size()-1; while(l < abc.size()){ auto &[cube1,a1,b1,c1] = abc.at(l); if(cube1 > X) break; l++; while(r >= 0){ auto &[cube2,a2,b2,c2] = abc.at(r); if(cube1+cube2 > X) r--; else break; } auto &[cube2,a2,b2,c2] = abc.at(r); if(cube1+cube2 != X) continue; int rl = r; while(true){ auto &[cube3,a3,b3,c3] = abc.at(rl); if(cube2 == cube3) rl--; else{rl++; break;} if(rl < 0){rl++; break;} } for(int i=rl; i<=r; i++){ auto &[cube3,a3,b3,c3] = abc.at(i); if(c1 <= a3) answer++; } } cout << answer << endl; }