結果
問題 | No.2064 Smallest Sequence on Grid |
ユーザー | 👑 p-adic |
提出日時 | 2022-09-02 22:05:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,438 bytes |
コンパイル時間 | 2,165 ms |
コンパイル使用メモリ | 201,952 KB |
実行使用メモリ | 33,024 KB |
最終ジャッジ日時 | 2024-11-16 03:37:26 |
合計ジャッジ時間 | 80,613 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,280 KB |
testcase_01 | AC | 2 ms
8,704 KB |
testcase_02 | AC | 2 ms
10,496 KB |
testcase_03 | AC | 2 ms
8,576 KB |
testcase_04 | AC | 2 ms
10,272 KB |
testcase_05 | AC | 2 ms
8,576 KB |
testcase_06 | AC | 2 ms
8,704 KB |
testcase_07 | AC | 2 ms
10,148 KB |
testcase_08 | AC | 2 ms
10,496 KB |
testcase_09 | AC | 2 ms
8,576 KB |
testcase_10 | AC | 2 ms
10,144 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | AC | 184 ms
20,096 KB |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
ソースコード
#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; void Solve( string ( &S )[A] , ll& i , ll& j , string& s , const ll& H_m , const ll& W_m ); int main(){ CIN( ll , H ); CIN( ll , W ); string S[A]; FOR( i , 0 , H ){ cin >> S[i]; } string s{}; ll i = 0; ll j = 0; ll H_m = H - 1; ll W_m = W - 1; Solve( S , i , j , s , H_m , W_m ); s += S[i].substr( j , 1 ); RETURN( s ); } void Solve( string ( &S )[A] , ll& i , ll& j , string& s , const ll& H_m , const ll& W_m ) { while( i != H_m || j != W_m ){ s += S[i].substr( j , 1 ); if( i == H_m ){ j++; } else if( j == W_m ){ i++; } else { auto ci = S[i+1].substr( j , 1 ).c_str()[0]; auto cj = S[i].substr( j+1 , 1 ).c_str()[0]; if( ci < cj ){ i++; } else if( cj < ci ){ j++; } else { string si{}; string sj{}; ll i_copy_i = i + 1; ll j_copy_i = j; ll i_copy_j = i; ll j_copy_j = j + 1; Solve( S , i_copy_i , j_copy_i , si , H_m , W_m ); Solve( S , i_copy_j , j_copy_j , sj , H_m , W_m ); if( si < sj ){ s += si; i = i_copy_i; j = j_copy_i; } else { s += sj; i = i_copy_j; j = j_copy_j; } } } } return; }