結果

問題 No.2759 Take Pictures, Elements?
ユーザー tobbietobbie
提出日時 2024-07-12 21:23:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 700 bytes
コンパイル時間 1,987 ms
コンパイル使用メモリ 178,540 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-12 21:23:44
合計ジャッジ時間 3,286 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,948 KB
testcase_23 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, n) for (int i = 0; i < (int)n; i++)
using ll = long long int;

int main() {
  int N, Q;
  cin >> N >> Q;
  vector<int> A(N);
  map<int, vector<int>> a;
  vector<int> B(Q);
  rep(i, N) {
    cin >> A[i];
    a[A[i]].push_back(i);
  }
  ll c = 0;
  int pos = 0;
  rep(i, Q) {
    int Bi;
    cin >> Bi;
    int p = lower_bound(a[Bi].begin(), a[Bi].end(), pos) - a[Bi].begin();
    if (p == (int)a[Bi].size())
      p--;
    while (p+1 < (int)a[Bi].size() &&
	   A[a[Bi][p+1]] == Bi &&
	   abs(pos - a[Bi][p+1]) < abs(pos - a[Bi][p]))
      p = p + 1;
    c += abs(a[Bi][p] - pos);
    pos = a[Bi][p];
  }
  cout << c << endl;
  return 0;
}
0