結果
問題 | No.1861 Required Number |
ユーザー | 蜜蜂 |
提出日時 | 2022-03-04 21:50:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,595 bytes |
コンパイル時間 | 4,387 ms |
コンパイル使用メモリ | 241,500 KB |
実行使用メモリ | 294,436 KB |
最終ジャッジ日時 | 2024-07-18 22:47:11 |
合計ジャッジ時間 | 7,831 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,764 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
04_evil_1.txt | -- | - |
04_evil_2.txt | -- | - |
04_evil_3.txt | -- | - |
04_evil_4.txt | -- | - |
ソースコード
//g++ 2.cpp -std=c++14 -O2 -I . #include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using ll = long long; using ld = long double; using vi = vector<int>; using vvi = vector<vi>; using vll = vector<ll>; using vvll = vector<vll>; using vld = vector<ld>; using vvld = vector<vld>; using vst = vector<string>; using vvst = vector<vst>; #define fi first #define se second #define pb push_back #define eb emplace_back #define pq_big(T) priority_queue<T,vector<T>,less<T>> #define pq_small(T) priority_queue<T,vector<T>,greater<T>> #define all(a) a.begin(),a.end() #define rep(i,start,end) for(ll i=start;i<(ll)(end);i++) #define per(i,start,end) for(ll i=start;i>=(ll)(end);i--) #define uniq(a) sort(all(a));a.erase(unique(all(a)),a.end()) int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n,k; cin>>n>>k; if(k==0){ cout<<0<<endl; return 0; } vi a(n); rep(i,0,n){ cin>>a[i]; } vvll prev(n+1); prev[0]={1}; rep(i,0,n){ vll x(k+1,0); x[0]++; x[a[i]]++; prev[i+1]=convolution(prev[i],x); while(prev[i+1].size()>1050){ prev[i+1].pop_back(); } } vvll afte(n); afte[0]={1}; rep(i,0,n-1){ vll x(k+1,0); x[0]++; x[a[n-1-i]]++; afte[i+1]=convolution(afte[i],x); while(afte[i+1].size()>1050){ afte[i+1].pop_back(); } } if(prev[n][k]==0){ cout<<-1<<endl; return 0; } int ans=0; rep(i,0,n){ vll l=prev[i]; vll r=afte[n-1-i]; vll gt=convolution(l,r); if(gt[k]==0){ ans++; } } cout<<ans<<endl; }