結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー SamShawCraftSamShawCraft
提出日時 2022-01-15 17:31:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 675 ms / 2,000 ms
コード長 1,038 bytes
コンパイル時間 907 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 16,544 KB
最終ジャッジ日時 2024-11-08 05:19:13
合計ジャッジ時間 6,739 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
7,424 KB
testcase_01 AC 6 ms
6,656 KB
testcase_02 AC 6 ms
6,784 KB
testcase_03 AC 6 ms
6,784 KB
testcase_04 AC 6 ms
6,912 KB
testcase_05 AC 6 ms
6,656 KB
testcase_06 AC 6 ms
6,912 KB
testcase_07 AC 6 ms
6,656 KB
testcase_08 AC 6 ms
6,784 KB
testcase_09 AC 6 ms
6,784 KB
testcase_10 AC 6 ms
6,784 KB
testcase_11 AC 6 ms
6,912 KB
testcase_12 AC 5 ms
6,912 KB
testcase_13 AC 524 ms
15,776 KB
testcase_14 AC 523 ms
15,772 KB
testcase_15 AC 528 ms
15,908 KB
testcase_16 AC 518 ms
15,780 KB
testcase_17 AC 527 ms
15,820 KB
testcase_18 AC 273 ms
16,540 KB
testcase_19 AC 675 ms
16,416 KB
testcase_20 AC 49 ms
7,424 KB
testcase_21 AC 49 ms
7,552 KB
testcase_22 AC 50 ms
7,424 KB
testcase_23 AC 41 ms
7,552 KB
testcase_24 AC 42 ms
7,680 KB
testcase_25 AC 462 ms
16,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <algorithm>
#include <numeric>
#include <unordered_map>
#include <vector>
#define qaq inline
const int sz=1e6+19;
int n,arr[sz];
std::unordered_map<int,int> cnts;
std::vector<int> solve(){
    std::vector<int> divCnt(1e6+1,0),divisors;
    for(auto [ele,ct]:cnts){
        divisors.clear();
        for(int cx=1;cx*cx<=ele;++cx){
            if(ele%cx==0){
                divisors.push_back(cx);
                if(cx*cx!=ele)
                    divisors.push_back(ele/cx);
            }
        }
        for(auto cx:divisors)
            divCnt[cx]+=ct;
    }
    std::vector<int> ans(n,0);
    for(int cx=1;cx<=1e6;++cx){
        if(divCnt[cx]!=0)
            ans[n-divCnt[cx]]=std::max(ans[n-divCnt[cx]],cx);
    }
    for(int cx=1;cx<n;++cx)
        ans[cx]=std::max(ans[cx],ans[cx-1]);
    return ans;
}
int main(){
    scanf("%d",&n);
    for(int cx=0,u;cx<n;++cx){
        scanf("%d",&u);
        cnts[u]++;
    }
    auto ans=solve();
    for(auto cx:ans)
        printf("%d\n",cx);
    return 0;
}
0