結果
問題 | No.365 ジェンガソート |
ユーザー |
![]() |
提出日時 | 2016-04-29 22:45:15 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 30 ms / 2,000 ms |
コード長 | 540 bytes |
コンパイル時間 | 655 ms |
コンパイル使用メモリ | 79,112 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 01:41:57 |
合計ジャッジ時間 | 2,367 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 41 |
ソースコード
#include <algorithm>#include <numeric>#include <string>#include <vector>#include <iostream>#include <queue>#include <utility>#include <cmath>#include <bitset>using namespace std;int main(){int n;cin >> n;vector<int> a(n);for(auto&& x : a){cin >> x;}auto max_itr = max_element(a.begin(),a.end());int count = 1;for(auto itr = max_itr - 1; itr != a.begin() -1; --itr){if(*itr == *max_itr - count)++count;}cout << n - count << endl;}