結果

問題 No.2064 Smallest Sequence on Grid
ユーザー 👑 p-adicp-adic
提出日時 2022-09-02 23:45:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,273 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 207,096 KB
実行使用メモリ 821,556 KB
最終ジャッジ日時 2024-11-16 06:36:02
合計ジャッジ時間 60,266 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
12,064 KB
testcase_01 AC 2 ms
13,632 KB
testcase_02 AC 2 ms
12,068 KB
testcase_03 AC 2 ms
51,204 KB
testcase_04 AC 2 ms
13,640 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 MLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 AC 195 ms
14,848 KB
testcase_29 MLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

using ll = long long;

#define CIN( LL , A ) LL A; cin >> A 
#define FOR( VAR , INITIAL , FINAL_PLUS_ONE ) for( int VAR = INITIAL ; VAR < FINAL_PLUS_ONE ; VAR ++ ) 
#define RETURN( ANSWER ) cout << ( ANSWER ) << "\n"; return 0 

constexpr const ll A = 3000;

int main(){
  CIN( ll , H );
  CIN( ll , W );
  string S[A];
  FOR( i , 0 , H ){
    cin >> S[i];
  }
  vector<ll> i{};
  vector<ll> j{};
  vector<ll> i_prev{};
  vector<ll> j_prev{};
  i_prev.push_back( 0 );
  j_prev.push_back( 0 );
  cout << S[0].substr( 0 , 1 );
  ll H_m = H - 1;
  ll W_m = W - 1;
  ll L = H_m + W_m;
  FOR( l , 0 , L ){
    ll size = i_prev.size();
    string s_min = "z";
    FOR( k , 0 , size ){
      ll i_curr = i_prev[k] + 1;
      ll j_curr = j_prev[k];
      FOR( num , 0 , 2 ){
	if( i_curr <= H_m && j_curr <= W_m ){
	  string s_curr = S[i_curr].substr( j_curr , 1 );
	  if( s_min == s_curr ){
	    i.push_back( i_curr );
	    j.push_back( j_curr );
	  } else if( s_min > s_curr ){
	    s_min = s_curr;
	    i.clear();
	    j.clear();
	    i.push_back( i_curr );
	    j.push_back( j_curr );
	  }
	}
	i_curr--;
	j_curr++;
      }
    }
    cout << s_min;
    i_prev = i;
    j_prev = j;
    i.clear();
    j.clear();
  }
  RETURN( "" );
}
0