結果

問題 No.39 桁の数字を入れ替え
ユーザー GoryudyumaGoryudyuma
提出日時 2015-08-17 01:03:45
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 484 bytes
コンパイル時間 1,479 ms
コンパイル使用メモリ 164,372 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-10 05:10:24
合計ジャッジ時間 2,026 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:22:25: warning: ‘memo2’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   22 |                         if( memo2 <= str[i] )
      |                         ^~

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main ()
{
	string str,str2;
	cin >> str;
	str2 = str;
	sort ( str2.rbegin () , str2.rend () );
	int memo = -1,memo3;
	char memo2;
	for( size_t i = 0; i < str.size(); i++ )
	{
		if( memo==-1&&str[i] != str2[i] )
		{
			memo = i;
			memo2 = '0' - 1;
			memo3 = i;
		} else
		{
			if( memo2 <= str[i] )
			{
				memo2 = str[i];
				memo3 = i;
			}
		}
	}
	if( memo + 1 )
	{
		swap ( str[memo] , str[memo3] );
	}
	cout << str << endl;
}
0