結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー HaarHaar
提出日時 2021-06-11 21:38:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 2,818 ms
コンパイル使用メモリ 204,404 KB
実行使用メモリ 299,704 KB
最終ジャッジ日時 2024-05-08 17:10:40
合計ジャッジ時間 14,130 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 98 ms
89,796 KB
testcase_04 AC 183 ms
170,632 KB
testcase_05 AC 132 ms
109,328 KB
testcase_06 AC 197 ms
155,708 KB
testcase_07 AC 157 ms
130,412 KB
testcase_08 AC 114 ms
110,568 KB
testcase_09 AC 12 ms
14,224 KB
testcase_10 AC 193 ms
157,444 KB
testcase_11 AC 87 ms
74,020 KB
testcase_12 AC 77 ms
71,956 KB
testcase_13 AC 13 ms
12,400 KB
testcase_14 AC 241 ms
189,796 KB
testcase_15 AC 274 ms
189,388 KB
testcase_16 AC 73 ms
65,036 KB
testcase_17 AC 49 ms
46,436 KB
testcase_18 AC 11 ms
11,680 KB
testcase_19 AC 18 ms
19,780 KB
testcase_20 AC 235 ms
164,108 KB
testcase_21 AC 36 ms
34,388 KB
testcase_22 AC 15 ms
15,800 KB
testcase_23 AC 419 ms
261,028 KB
testcase_24 AC 420 ms
261,024 KB
testcase_25 AC 417 ms
261,028 KB
testcase_26 AC 421 ms
261,024 KB
testcase_27 AC 414 ms
261,028 KB
testcase_28 AC 417 ms
261,028 KB
testcase_29 AC 417 ms
261,056 KB
testcase_30 AC 415 ms
261,028 KB
testcase_31 AC 415 ms
261,032 KB
testcase_32 AC 417 ms
261,156 KB
testcase_33 AC 462 ms
261,052 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 421 ms
299,704 KB
testcase_39 AC 420 ms
260,492 KB
testcase_40 AC 409 ms
280,424 KB
testcase_41 AC 415 ms
260,492 KB
testcase_42 AC 410 ms
277,308 KB
testcase_43 AC 394 ms
287,272 KB
testcase_44 AC 402 ms
289,952 KB
testcase_45 AC 412 ms
277,868 KB
testcase_46 AC 406 ms
290,416 KB
testcase_47 AC 406 ms
275,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#ifdef DEBUG
#include <Mylib/Debug/debug.cpp>
#else
#define dump(...)
#endif


int main() {
  int N, M; std::cin >> N >> M;
  std::vector<int> A(N), B(M);

  for (int i = 0; i < N; ++i) std::cin >> A[i];
  for (int i = 0; i < M; ++i) std::cin >> B[i];

  std::vector<int> a, b;
  for (int i = 0; i < M; ++i) a.insert(a.end(), A.begin(), A.end());
  for (int i = 0; i < N; ++i) b.insert(b.end(), B.begin(), B.end());

  dump(a, b);

  int ans = INT_MAX;
  bool ok = false;

  for (int i = 0; i < N * M; ++i) {
    if (a[i] == b[i]) {
      ok = true;
      ans = std::min(ans, i + 1);
    }
  }

  if (ok) std::cout << ans << "\n";
  else std::cout << -1 << "\n";

  return 0;
}
0