結果

問題 No.273 回文分解
ユーザー hanorver
提出日時 2015-08-28 23:19:18
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 868 bytes
コンパイル時間 621 ms
コンパイル使用メモリ 68,920 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-25 13:25:04
合計ジャッジ時間 1,665 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:30:21: warning: ‘maxj’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   30 |         v[maxi][maxj] = 0;
      |                     ^
main.cpp:30:15: warning: ‘maxi’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   30 |         v[maxi][maxj] = 0;
      |               ^

ソースコード

diff #

#include<iostream>
#include<string>
#include<vector>
#include<stack>
#include<algorithm>

int main() {
	std::string str;
	std::cin >> str;

	std::vector<std::vector<int> > v(str.length(),std::vector<int>(str.length(),0));

	int max = 0, maxi, maxj;
	for (int i = 0; i < str.size(); i++) {
		for (int j = 1; j <= str.size() - i; j++) {
			std::string s = str.substr(i, j);
			std::string r = s;
			std::reverse(r.begin(), r.end());
			if (s == r) {
				v[i][j - 1] = s.length();
				if (max < s.length()) {
					max = s.length();
					maxi = i;
					maxj = j - 1;
				}
			}
		}
	}

	v[maxi][maxj] = 0;
	int secondmax = 0;
	for (int i = 0; i < v.size(); i++) {
		secondmax = std::max(secondmax, *std::max_element(v[i].begin(), v[i].end()));
	}

	if(max != str.length()){
		std::cout << max << std::endl;
	} else {
		std::cout << secondmax << std::endl;
	}

	return 0;
}
0