結果
問題 | No.983 Convolution |
ユーザー | ttttan2 |
提出日時 | 2020-02-11 15:29:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,490 bytes |
コンパイル時間 | 1,800 ms |
コンパイル使用メモリ | 180,932 KB |
実行使用メモリ | 14,496 KB |
最終ジャッジ日時 | 2024-10-01 07:58:03 |
合計ジャッジ時間 | 5,136 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 7 ms
6,820 KB |
testcase_02 | AC | 6 ms
6,820 KB |
testcase_03 | AC | 95 ms
12,956 KB |
testcase_04 | AC | 86 ms
12,232 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 70 ms
10,368 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 12 ms
6,816 KB |
testcase_24 | AC | 4 ms
6,820 KB |
testcase_25 | AC | 4 ms
6,816 KB |
testcase_26 | AC | 8 ms
6,820 KB |
testcase_27 | AC | 6 ms
6,820 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 2 ms
6,816 KB |
testcase_34 | AC | 5 ms
6,820 KB |
testcase_35 | AC | 5 ms
6,820 KB |
ソースコード
#include<bits/stdc++.h> //ios::sync_with_stdio(false);cin.tie(0);cout.tie(0); using namespace std; typedef long long ll; typedef unsigned long long ull; typedef unsigned int ui; typedef pair<int,int> pii; typedef pair<pii,int> ppii; typedef pair<int,pii> pipi; typedef pair<ll,ll> pll; typedef pair<pll,ll> ppll; typedef pair<ll,pll> plpl; typedef tuple<ll,ll,ll> tl; ll mod=1000000007; ll mod2=998244353; ll mod3=1000003; ll mod4=998244853; ll inf=1LL<<60; long double pi=3.14159265358979323846L; double eps=1e-12; #define rep(i,m,n) for(ll i=m;i<n;i++) #define rrep(i,n,m) for(ll i=n;i>=m;i--) #define srep(itr,st) for(auto itr=st.begin();itr!=st.end();itr++) int dh[4]={1,-1,0,0}; int dw[4]={0,0,1,-1}; int ddh[8]={-1,-1,-1,0,0,1,1,1}; int ddw[8]={-1,0,1,-1,1,-1,0,1}; ll gcd(ll a,ll b){ if(a<b)swap(a,b); if(b==0)return a; if(a%b==0)return b; return gcd(b,a%b); } ll Pow(ll n,ll k){ ll ret=1; ll now=n; while(k>0){ if(k&1)ret*=now; now*=now; k/=2; } return ret; } ll beki(ll n,ll k,ll md){ ll ret=1; ll now=n; while(k>0){ if(k%2==1){ ret*=now; ret%=md; } now*=now; now%=md; k/=2; } return ret; } ll gyaku(ll n,ll md){ return beki(n,md-2,md); }random_device rnd; mt19937 mt(rnd()); int main(){ ios::sync_with_stdio(false);cin.tie(0);cout.tie(0); int n;cin>>n; ll a[n]; rep(i,0,n)cin>>a[i]; bool ok[n+1]; fill(ok,ok+n+1,true); ll sum[n+1]; fill(sum,sum+n+1,0); rrep(i,n-1,0){ if(ok[i]==false)continue; if(a[i]==-1){ int now=i; while(true){ ok[now]=false; if(now==0)break; now=(now-1)&i; } } } ll ans=-1; ll num=-1; rrep(i,n-1,0){ if(ok[i]){ ans=a[i]*a[i]; num=i; break; } } if(ans==-1){ cout<<-1<<endl; return 0; } ll b[n]; fill(b,b+n,0); vector<int> v; rep(i,0,n)if(a[i]>=0)v.push_back(i); uniform_int_distribution<int> ra(0,v.size()-1); map<pii,int> mp; rep(i,0,100000){ int aa=ra(mt); int bb=ra(mt); pii p={aa,bb}; if(mp[p])continue; mp[p]++; int c=aa&bb; b[c]+=a[aa]*a[bb]; } rep(i,0,n){ if(ok[i]){ if(b[i]>0){ ans=gcd(ans,b[i]); } } } cout<<ans<<endl; }