結果

問題 No.1347 HS Railway
ユーザー SSRSSSRS
提出日時 2021-01-16 14:06:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,330 bytes
コンパイル時間 2,236 ms
コンパイル使用メモリ 181,612 KB
実行使用メモリ 10,740 KB
最終ジャッジ日時 2024-05-05 16:16:56
合計ジャッジ時間 6,797 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 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 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 40 ms
7,680 KB
testcase_13 AC 29 ms
5,376 KB
testcase_14 AC 16 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 8 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 62 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 67 ms
6,252 KB
testcase_24 AC 29 ms
5,632 KB
testcase_25 AC 49 ms
6,784 KB
testcase_26 WA -
testcase_27 AC 46 ms
9,248 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 71 ms
9,848 KB
testcase_31 AC 63 ms
9,868 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 97 ms
10,732 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 86 ms
10,476 KB
testcase_42 AC 99 ms
10,480 KB
testcase_43 AC 83 ms
10,480 KB
testcase_44 AC 84 ms
10,484 KB
testcase_45 AC 80 ms
10,484 KB
testcase_46 AC 92 ms
10,608 KB
testcase_47 AC 93 ms
10,612 KB
testcase_48 AC 106 ms
10,612 KB
testcase_49 AC 89 ms
10,480 KB
testcase_50 AC 98 ms
10,608 KB
testcase_51 AC 90 ms
10,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin >> N;
  vector<int> L(5), R(5);
  vector<vector<int>> A(5, vector<int>(N - 1, 0));
  for (int i = 0; i < 5; i++){
    cin >> L[i] >> R[i];
    L[i]--;
    R[i]--;
    for (int j = L[i]; j < R[i]; j++){
      cin >> A[i][j];
    }
  }
  int M;
  cin >> M;
  vector<vector<int>> s(5);
  for (int i = 0; i < M; i++){
    int B, S;
    cin >> B >> S;
    B--;
    s[B].push_back(S);
  }
  for (int i = 0; i < 5; i++){
    sort(s[i].begin(), s[i].end());
  }
  vector<vector<long long>> T(5, vector<long long>(N));
  for (int i = 0; i < 5; i++){
    T[i][0] = 0;
    for (int j = 0; j < N - 1; j++){
      T[i][j + 1] = T[i][j] + A[i][j];
    }
  }
  long long ans = 0;
  for (int i = 0; i < 5; i++){
    for (int j = 0; j < i; j++){
      int l = max(L[i], L[j]);
      int r = min(R[i], R[j]);
      if (l < r){
        vector<int> lj, rj;
        for (int x : s[j]){
          lj.push_back(x + T[j][l]);
          rj.push_back(x + T[j][r]);
        }
        for (int x : s[i]){
          int li = x + T[i][l];
          int ri = x + T[i][r];
          int a = lower_bound(lj.begin(), lj.end(), li) - lj.begin();
          int b = upper_bound(rj.begin(), rj.end(), ri) - rj.begin();
          ans += b - a;
        }
      }
    }
  }
  cout << ans << endl;
}
0