結果

問題 No.1943 消えたAGCT(1)
ユーザー forest3forest3
提出日時 2022-07-10 12:43:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 606 bytes
コンパイル時間 1,883 ms
コンパイル使用メモリ 171,800 KB
実行使用メモリ 27,308 KB
最終ジャッジ日時 2024-06-10 22:47:55
合計ジャッジ時間 3,690 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 198 ms
27,308 KB
testcase_10 AC 12 ms
5,376 KB
testcase_11 AC 12 ms
5,376 KB
testcase_12 AC 12 ms
5,376 KB
testcase_13 AC 8 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 14 ms
5,376 KB
testcase_25 AC 14 ms
5,376 KB
testcase_26 AC 13 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main()
{
	int n;
	string s;
	cin >> n >> s;

	set<int> st;
	for( int i = 0; i < n; i++ ) {
		if( s[i] == 'A' || s[i] == 'G' || s[i] == 'C' || s[i] == 'T' ) st.insert( i );
	}
	int ans = 0;
	int last = -1;
	int del = 0;
	while( st.size() ) {
		int j = st.size() - 1;
		auto it = st.lower_bound( j );
		int a = *it - j + 1;
		if( last < 0 ) {
			last = *it;
			del += a;
		}
		else if( *it > last ) {
			int t = a;
			a -= del;
			del = t;
			last = *it;
		}
		else {
			last = *it;
			del = a;
		}
		ans += a;
		st.erase( it );
	}

	cout << ans << endl;
}
0