結果

問題 No.365 ジェンガソート
ユーザー フクモトNフクモトN
提出日時 2021-02-17 19:18:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 915 bytes
コンパイル時間 923 ms
コンパイル使用メモリ 89,292 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-14 05:06:36
合計ジャッジ時間 2,643 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,948 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 18 ms
6,940 KB
testcase_17 AC 22 ms
6,944 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 22 ms
6,944 KB
testcase_20 AC 8 ms
6,940 KB
testcase_21 AC 7 ms
6,944 KB
testcase_22 AC 17 ms
6,944 KB
testcase_23 AC 11 ms
6,944 KB
testcase_24 AC 17 ms
6,940 KB
testcase_25 AC 6 ms
6,940 KB
testcase_26 AC 14 ms
6,944 KB
testcase_27 AC 23 ms
6,944 KB
testcase_28 AC 14 ms
6,944 KB
testcase_29 AC 21 ms
6,940 KB
testcase_30 AC 14 ms
6,944 KB
testcase_31 AC 8 ms
6,944 KB
testcase_32 AC 7 ms
6,944 KB
testcase_33 AC 23 ms
6,940 KB
testcase_34 AC 5 ms
6,940 KB
testcase_35 AC 17 ms
6,944 KB
testcase_36 AC 23 ms
6,940 KB
testcase_37 AC 23 ms
6,940 KB
testcase_38 AC 23 ms
6,944 KB
testcase_39 AC 23 ms
6,944 KB
testcase_40 AC 23 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:34:9: warning: 'maxnum' may be used uninitialized [-Wmaybe-uninitialized]
   34 |     int maxnum;
      |         ^~~~~~

ソースコード

diff #

#include <stdio.h>
#include <iostream>
#include <math.h>
#include <string>
#include <vector>
#include <map>
#include <queue>
#include <cmath>
#include <cstdlib>
#include <algorithm>
#include <sstream>
//#include <iterator>
//#include <iomanip>

using namespace std;
using ll = unsigned long long;

typedef pair<ll, ll> P;
map<int,int> dp;
vector<int> X;
vector<int> Y;
vector<int> Z;

int main(void){
    string a;
    getline(cin, a);
    string lineF;
    getline(cin, lineF);
    vector<int> N;
    istringstream iss(lineF);
    int k;
    int mx=0;
    int num=0;
    int maxnum;
    while(iss >>k){
        N.push_back(k);
        mx=max(mx,k);
        if(mx==k){
            maxnum=num;
        }
        num++;
    }
    int ans=num-maxnum-1;
    for(int k=maxnum;k>=0;k--){
        if(N[k]==N[maxnum]-1){
            ans+=maxnum-k-1;
            maxnum = k;
        }
    }
    cout << ans+maxnum <<endl;

}
0