結果

問題 No.1439 Let's Compare!!!!
ユーザー simansiman
提出日時 2021-04-01 20:13:17
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 535 ms / 2,000 ms
コード長 1,233 bytes
コンパイル時間 1,633 ms
コンパイル使用メモリ 142,836 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-05-10 04:33:58
合計ジャッジ時間 7,654 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 8 ms
5,376 KB
testcase_08 AC 13 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 499 ms
14,336 KB
testcase_11 AC 535 ms
14,464 KB
testcase_12 AC 507 ms
14,208 KB
testcase_13 AC 499 ms
14,720 KB
testcase_14 AC 498 ms
14,592 KB
testcase_15 AC 470 ms
14,592 KB
testcase_16 AC 449 ms
14,592 KB
testcase_17 AC 434 ms
14,464 KB
testcase_18 AC 389 ms
14,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <limits.h>
#include <map>
#include <queue>
#include <set>
#include <string.h>
#include <vector>

using namespace std;
typedef long long ll;

int compare(int y, int x) {
  if (y < x) {
    return -1;
  } else if (y > x) {
    return 1;
  } else {
    return 0;
  }
}

int main() {
  int N;
  cin >> N;
  string S, T;
  cin >> S;
  cin >> T;
  int Q;
  cin >> Q;
  int nums[N][2];
  set<int> idx_list;

  for (int i = 0; i < N; ++i) {
    nums[i][0] = S[i] - '0';
    nums[i][1] = T[i] - '0';

    idx_list.insert(i);
  }

  char c;
  int x, y, state;
  for (int i = 0; i < Q; ++i) {
    cin >> c >> x >> y;
    --x;

    idx_list.insert(x);

    if (c == 'S') {
      nums[x][0] = y;
    } else {
      nums[x][1] = y;
    }

    while (!idx_list.empty()) {
      int idx = *idx_list.begin();

      state = compare(nums[idx][0], nums[idx][1]);
      if (state != 0) break;

      idx_list.erase(idx);
    }

    switch(state) {
      case -1:
        cout << "<" << endl;
        break;
      case 0:
        cout << "=" << endl;
        break;
      case 1:
        cout << ">" << endl;
        break;
    }
  }

  return 0;
}
0