結果

問題 No.1439 Let's Compare!!!!
ユーザー ninoinuininoinui
提出日時 2021-03-26 22:35:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,769 bytes
コンパイル時間 2,434 ms
コンパイル使用メモリ 208,668 KB
実行使用メモリ 14,008 KB
最終ジャッジ日時 2024-05-06 16:22:25
合計ジャッジ時間 6,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 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 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 30 ms
7,040 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:51:22: warning: declaration of 'a' shadows a previous local [-Wshadow]
   51 |     for (const auto& a : A) {
      |                      ^
main.cpp:37:21: note: shadowed declaration is here
   37 |   for (const auto& [a, b, c] : V) {
      |                     ^

ソースコード

diff #

#pragma GCC diagnostic warning "-Wextra"
#pragma GCC diagnostic warning "-Wshadow"
#include <bits/stdc++.h>
using namespace std;

template <class A, class B> bool cmin(A& a, B b) { return a > b && (a = b, true); }
template <class A, class B> bool cmax(A& a, B b) { return a < b && (a = b, true); }
template <class A, class B> ostream& operator<<(ostream& os, pair<A, B>& p) { return os << '(' << p.first << ", " << p.second << ')'; }
static bool debug = false;
void dump() {}
template <class A, class... B> void dump(A&& a, B&&... b) { if (debug) cout << a << (sizeof...(b) ? ' ' : '\n'), dump(b...); }
template <class A> void dump1D(A& a) { if (debug) for (auto i = a.begin(); i != a.end(); i++) cout << *i << (next(i) != a.end() ? ' ' : '\n'); }
template <class A> void dump2D(A& a) { if (debug) for (auto i = a.begin(); i != a.end(); i++) dump1D(*i), cout << (next(i) != a.end() ? "" : "\n"); }

signed main() {
  cin.tie(nullptr)->sync_with_stdio(false);
  debug = true;

  int N;
  cin >> N;
  string S, T;
  cin >> S >> T;
  int Q;
  cin >> Q;
  vector<tuple<char, int, char>> V(Q);
  for (int i = 0; i < Q; i++) {
    char a, c;
    int b;
    cin >> a >> b >> c, b--;
    V.at(i) = {a, b, c};
  }

  vector<int> A(N);
  for (int i = 0; i < N; i++) {
    A.at(i) = S.at(i) - T.at(i);
  }
  for (const auto& [a, b, c] : V) {
    if (a == 'S') {
      A.at(b) -= S.at(b);
      A.at(b) += c;
      S.at(b) = c;
    } else {
      A.at(b) += T.at(b);
      A.at(b) -= c;
      T.at(b) = c;
    }
    if (S == T) {
      cout << '=' << '\n';
      continue;
    }
    for (const auto& a : A) {
      if (a < 0) {
        cout << '<' << '\n';
        goto next;
      }
      if (a > 0) {
        cout << '>' << '\n';
        goto next;
      }
    }
    next:;
  }
}
0