結果
問題 | No.2092 Conjugation |
ユーザー | hamigakiko0721 |
提出日時 | 2022-10-27 19:34:42 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 43 ms / 2,000 ms |
コード長 | 696 bytes |
コンパイル時間 | 1,478 ms |
コンパイル使用メモリ | 167,916 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 05:02:43 |
合計ジャッジ時間 | 3,543 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
ソースコード
#include<bits/stdc++.h> #include<iostream> using namespace std; using LL = long long; //using P = pair<int,int>; using Graph = vector<vector<int>>; const long long LINF = 1LL << 60; #define all(x) (x).begin(), (x).end() #define rep(i,n) for(int i = 0; i < (n); ++i) template<class T>void chmin(T&a, T b){if(a > b) a = b;} template<class T>void chmax(T&a, T b){if(a < b) a = b;} int N, A[100009], B[100009], S[100009]; int main(){ cin >> N; for(int i = 1; i <= N; ++i) cin >> A[i]; for(int i = 1; i <= N; ++i) B[1]++, B[A[i]+1]--; for(int i = 1; i <= A[1]; ++i) S[i] = S[i-1] + B[i]; for(int i = 1; i <= A[1]; ++i){ if(i>1) cout << " "; cout << S[i]; } cout << endl; }