結果
問題 | No.1626 三角形の構築 |
ユーザー | chocorusk |
提出日時 | 2021-07-23 22:44:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 368 ms / 2,000 ms |
コード長 | 2,291 bytes |
コンパイル時間 | 4,020 ms |
コンパイル使用メモリ | 205,296 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-12 11:36:58 |
合計ジャッジ時間 | 6,210 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 46 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 31 ms
5,248 KB |
testcase_08 | AC | 53 ms
5,248 KB |
testcase_09 | AC | 68 ms
5,248 KB |
testcase_10 | AC | 50 ms
5,248 KB |
testcase_11 | AC | 61 ms
5,248 KB |
testcase_12 | AC | 21 ms
5,248 KB |
testcase_13 | AC | 18 ms
5,248 KB |
testcase_14 | AC | 37 ms
5,248 KB |
testcase_15 | AC | 21 ms
5,248 KB |
testcase_16 | AC | 43 ms
5,248 KB |
testcase_17 | AC | 39 ms
5,248 KB |
testcase_18 | AC | 19 ms
5,248 KB |
testcase_19 | AC | 39 ms
5,248 KB |
testcase_20 | AC | 52 ms
5,248 KB |
testcase_21 | AC | 37 ms
5,248 KB |
testcase_22 | AC | 66 ms
5,248 KB |
testcase_23 | AC | 42 ms
5,248 KB |
testcase_24 | AC | 368 ms
5,248 KB |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 7 ms
5,248 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #include <list> #include <atcoder/all> #define popcount __builtin_popcount using namespace std; using namespace atcoder; typedef long long ll; typedef pair<ll, int> P; int main() { int T; cin>>T; while(T--){ ll s, t; cin>>s>>t; if(16*s*s%t!=0){ cout<<0<<endl; continue; } map<ll, int> mp; ll s1=s, t1=t; for(ll p=2; p*p<=s1; p++){ if(s1%p==0){ while(s1%p==0){ s1/=p; mp[p]+=2; } } } if(s1>1) mp[s1]+=2; mp[2]+=4; for(ll p=2; p*p<=t1; p++){ if(t1%p==0){ while(t1%p==0){ t1/=p; mp[p]--; } } } if(t1>1) mp[t1]--; vector<P> f; for(auto p:mp) f.push_back(p); vector<ll> v; auto dfs=[&](auto dfs, ll x, int k)->void{ if(k==f.size()){ if(t>x && (t-x)%2==0){ v.push_back(x); } return; } ll p=f[k].first, x1=x; for(int i=0; i<=f[k].second; i++){ if(x1<t) dfs(dfs, x1, k+1); x1*=p; } }; dfs(dfs, 1, 0); ll u=16*s*s/t; vector<pair<pair<ll, ll>, ll>> ans; for(auto x:v){ for(auto y:v){ if(u/x%y!=0 || (t-u/x/y)%2!=0) continue; ll a=(t-x)/2, b=(t-y)/2, c=(t-u/x/y)/2; if(c>0 && a+b+c==t && a<=b && b<=c && c<=1000000000){ ans.push_back({{a, b}, c}); } } } cout<<ans.size()<<endl; for(auto q:ans) cout<<q.first.first<<" "<<q.first.second<<" "<<q.second<<endl; } return 0; }