結果

問題 No.1439 Let's Compare!!!!
ユーザー kotatsugamekotatsugame
提出日時 2021-03-26 21:27:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 678 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-05-06 22:13:37
合計ジャッジ時間 5,497 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 9 ms
5,376 KB
testcase_08 AC 15 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 462 ms
11,904 KB
testcase_11 AC 437 ms
6,912 KB
testcase_12 AC 404 ms
6,912 KB
testcase_13 AC 452 ms
12,160 KB
testcase_14 AC 442 ms
12,032 KB
testcase_15 AC 416 ms
5,376 KB
testcase_16 AC 364 ms
5,376 KB
testcase_17 AC 386 ms
5,376 KB
testcase_18 AC 312 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<set>
using namespace std;
int N,Q;
string S,T;
main()
{
	cin>>N>>S>>T>>Q;
	set<int>L,R;
	L.insert(N);
	R.insert(N);
	for(int i=0;i<N;i++)
	{
		if(S[i]<T[i])R.insert(i);
		else if(S[i]>T[i])L.insert(i);
	}
	for(;Q--;)
	{
		char c;
		int x,y;cin>>c>>x>>y;
		x--;
		if(S[x]<T[x])R.erase(x);
		else if(S[x]>T[x])L.erase(x);
		if(c=='S')S[x]=y+'0';
		else T[x]=y+'0';
		if(S[x]<T[x])R.insert(x);
		else if(S[x]>T[x])L.insert(x);
		int l=*L.begin(),r=*R.begin();
		cout<<(l<r?">\n":l>r?"<\n":"=\n");
	}
}
0