結果
問題 | No.1512 作文 |
ユーザー | milanis48663220 |
提出日時 | 2021-05-21 21:33:26 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 63 ms / 2,000 ms |
コード長 | 1,379 bytes |
コンパイル時間 | 2,119 ms |
コンパイル使用メモリ | 123,492 KB |
最終ジャッジ日時 | 2025-01-21 14:29:44 |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 38 |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; bool ok(string s){ int m = s.size(); for(int i = 1; i < m; i++){ if(s[i] < s[i-1]) return false; } return true; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n; cin >> n; vector<int> dp(26); vector<string> t(n); for(int i = 0; i < n; i++) cin >> t[i]; sort(t.begin(), t.end()); for(int i = 0; i < n; i++){ string s = t[i]; if(!ok(s)) continue; int l = s[0]-'a'; int r = s.back()-'a'; int mx = 0; for(int j = 0; j < 26; j++){ if(j <= l) chmax(mx, dp[j]); } chmax(dp[r], mx+(int)s.size()); } cout << *max_element(dp.begin(), dp.end()) << endl; }