結果
問題 | No.1347 HS Railway |
ユーザー | SSRS |
提出日時 | 2021-01-16 13:56:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,211 bytes |
コンパイル時間 | 1,965 ms |
コンパイル使用メモリ | 176,084 KB |
実行使用メモリ | 8,464 KB |
最終ジャッジ日時 | 2024-05-05 16:02:49 |
合計ジャッジ時間 | 9,850 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 5 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 105 ms
8,464 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | AC | 34 ms
7,296 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
ソースコード
#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; assert(M <= 10000); vector<int> B(M), S(M); for (int i = 0; i < M; i++){ cin >> B[i] >> S[i]; B[i]--; } 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 < M; i++){ for (int j = i + 1; j < M; j++){ int l = max(L[B[i]], L[B[j]]); int r = min(R[B[i]], R[B[j]]); if (l < r){ long long tli = S[i] + (T[B[i]][l] - T[B[i]][L[B[i]]]); long long tlj = S[j] + (T[B[j]][l] - T[B[j]][L[B[j]]]); long long tri = S[i] + (T[B[i]][r] - T[B[i]][L[B[i]]]); long long trj = S[j] + (T[B[j]][r] - T[B[j]][L[B[j]]]); if (tli <= tlj && tri >= trj || tli >= tlj && tri <= trj){ ans++; } } } } cout << ans << endl; }