結果
問題 | No.1791 Repeat Multiplication |
ユーザー | HIcoder |
提出日時 | 2023-07-12 10:56:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,421 bytes |
コンパイル時間 | 1,225 ms |
コンパイル使用メモリ | 116,896 KB |
実行使用メモリ | 821,700 KB |
最終ジャッジ日時 | 2024-09-14 00:59:03 |
合計ジャッジ時間 | 6,585 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 123 ms
21,888 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 6 ms
6,940 KB |
testcase_05 | AC | 8 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 5 ms
6,940 KB |
testcase_08 | MLE | - |
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 | -- | - |
ソースコード
/* MLE 探索かな */ #include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<cmath> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<int,int> P; typedef pair<int,P> PP; const ll MOD=998244353; const double PI=acos(-1); int main(){ int N,Q; cin>>N>>Q; vector<int> x(Q); for(int q=0;q<Q;q++){ cin>>x[q]; } queue<vector<int>> que; set<vector<int>> st; vector<int> init=vector<int>{1}; que.push(init); st.insert(init); while(!que.empty()){ vector<int> c=que.front(); que.pop(); int a=c.back(); for(int b=2*a;b<=N;b+=a){ /* vector<int> tmp=c; tmp.push_back(b); if(!st.count(tmp)){ st.insert(tmp); que.push(tmp); } */ c.push_back(b); if(!st.count(c)){ st.insert(c); que.push(c); } c.pop_back(); } } vector<int> num(N+1,0); for(auto &vec:st){ for(int v:vec){ //cout<<v<<' '; num[v]++;//vecには vが出現した } //cout<<endl; } //cout<<"ans"<<endl; for(int q=0;q<Q;q++){ cout<<num[x[q]]<<endl; } }