結果
問題 | No.2510 Six Cube Sum Counting |
ユーザー | ゆにぽけ |
提出日時 | 2023-10-21 00:08:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,570 bytes |
コンパイル時間 | 1,692 ms |
コンパイル使用メモリ | 146,756 KB |
実行使用メモリ | 149,268 KB |
最終ジャッジ日時 | 2024-09-21 00:34:49 |
合計ジャッジ時間 | 21,607 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 581 ms
146,664 KB |
testcase_01 | AC | 585 ms
146,920 KB |
testcase_02 | AC | 664 ms
147,948 KB |
testcase_03 | AC | 588 ms
146,668 KB |
testcase_04 | AC | 581 ms
146,840 KB |
testcase_05 | AC | 579 ms
146,668 KB |
testcase_06 | AC | 595 ms
146,876 KB |
testcase_07 | AC | 591 ms
146,792 KB |
testcase_08 | AC | 595 ms
146,792 KB |
testcase_09 | AC | 592 ms
146,920 KB |
testcase_10 | AC | 587 ms
146,796 KB |
testcase_11 | AC | 591 ms
146,788 KB |
testcase_12 | AC | 593 ms
146,792 KB |
testcase_13 | AC | 594 ms
146,920 KB |
testcase_14 | AC | 594 ms
146,792 KB |
testcase_15 | AC | 578 ms
146,796 KB |
testcase_16 | AC | 582 ms
146,768 KB |
testcase_17 | AC | 584 ms
146,792 KB |
testcase_18 | AC | 592 ms
146,792 KB |
testcase_19 | AC | 597 ms
146,792 KB |
testcase_20 | WA | - |
testcase_21 | AC | 670 ms
147,984 KB |
testcase_22 | AC | 715 ms
149,096 KB |
testcase_23 | AC | 676 ms
148,072 KB |
testcase_24 | AC | 674 ms
148,076 KB |
testcase_25 | AC | 594 ms
146,792 KB |
testcase_26 | AC | 595 ms
146,796 KB |
testcase_27 | AC | 657 ms
147,304 KB |
testcase_28 | AC | 595 ms
146,796 KB |
testcase_29 | AC | 680 ms
148,072 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<cstring> #include<cassert> #include<cmath> #include<ctime> #include<iomanip> #include<numeric> #include<stack> #include<queue> #include<map> #include<unordered_map> #include<set> #include<unordered_set> #include<bitset> #include<random> using namespace std; const int N = 300; vector<int> V[N+1]; void solve() { int X;cin >> X; vector<pair<int,pair<int,pair<int,int>>>> A; for(int i = 0;i <= N;i++)for(int j = i;j <= N;j++)for(int k = j;k <= N;k++) A.push_back(make_pair(i*i*i+j*j*j+k*k*k,make_pair(i,make_pair(j,k)))); sort(A.begin(),A.end()); vector<pair<int,pair<int,pair<int,int>>>> B(A.rbegin(),A.rend()); long long ans = 0; int bi = 0; unordered_set<long long> S; for(int i = 0;i < (int)A.size();i++) { while(bi < (int)B.size() && A[i].first+B[bi].first > X) bi++; if(bi == (int)B.size() || B[bi].first < A[i].first) break; if(bi < (int)B.size() && A[i].first+B[bi].first == X) { vector<int> v; v.push_back(A[i].second.first); v.push_back(A[i].second.second.first); v.push_back(A[i].second.second.second); v.push_back(B[bi].second.first); v.push_back(B[bi].second.second.first); v.push_back(B[bi].second.second.second); sort(v.begin(),v.end()); long long val = 0; for(int j = 0;j < 6;j++) val = val*(N+1) + v[j]; if(S.count(val)); else ans++,S.insert(val); //cout << A[i] << " " << B[bi] << endl; } } cout << ans << endl; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int tt = 1; //cin >> tt; while(tt--) solve(); }