結果

問題 No.2759 Take Pictures, Elements?
ユーザー tobbietobbie
提出日時 2024-07-08 20:42:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 824 bytes
コンパイル時間 2,936 ms
コンパイル使用メモリ 177,408 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-08 20:43:03
合計ジャッジ時間 4,816 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 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
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 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;
  map<int, vector<int>> A;
  vector<int> B(Q);
  rep(i, N) {
    int Ai;
    cin >> Ai;
    A[Ai].push_back(i);
  }
  ll c = 0;
  int pos = 0;
  rep(i, Q) {
    int Bi;
    cin >> Bi;
    int n = A[Bi].size();
    int p = 0;
    if (n == 1 || pos < A[Bi][0])
      p = A[Bi][0];
    else if (A[Bi][n - 1] < pos)
      p = A[Bi][n - 1];
    else {
      vector<int> v = A[Bi];
      int pl = lower_bound(v.begin(), v.end(), pos) - v.begin();
      int pu = upper_bound(v.begin(), v.end(), pos) - v.begin();
      if (abs(pl - pos) < abs(pu - pos))
	p = pl;
      else
	p = pu;
    }
    c += abs(p - pos);
    pos = p;
  }
  cout << c << endl;
  return 0;
}
0