結果

問題 No.2092 Conjugation
ユーザー _yurimoir_yurimoir
提出日時 2022-10-07 21:29:15
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 1,659 ms
コンパイル使用メモリ 169,724 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-12 06:08:17
合計ジャッジ時間 3,206 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    int n;
    cin>>n;
    vector<int> a(n),b(100005,0);
    for(auto& aa:a)cin>>aa;
    int apos=n-1;
    int val=n;
    vector<int> ans;
    for(int i=0;i<100005;i++){
        while(apos>=0&&a[apos]<i+1){
            val--;
            apos--;
        }
        if(val<0)break;
        ans.push_back(val);
    }
    for(int i=0;i<a[0];i++){
        cout<<ans[i]<<" ";
    }
    cout<<endl;
    return 0;
}
0