結果

問題 No.1347 HS Railway
ユーザー PCTprobabilityPCTprobability
提出日時 2021-01-15 22:39:47
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 3,027 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 164,480 KB
実行使用メモリ 27,520 KB
最終ジャッジ日時 2024-11-26 18:28:52
合計ジャッジ時間 82,750 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 AC 2 ms
10,496 KB
testcase_02 AC 2 ms
10,624 KB
testcase_03 AC 3 ms
10,624 KB
testcase_04 AC 2 ms
10,624 KB
testcase_05 AC 2 ms
10,624 KB
testcase_06 AC 2 ms
10,624 KB
testcase_07 AC 1 ms
10,624 KB
testcase_08 AC 2 ms
10,624 KB
testcase_09 AC 1 ms
10,624 KB
testcase_10 AC 2 ms
10,624 KB
testcase_11 AC 2 ms
10,624 KB
testcase_12 AC 373 ms
15,056 KB
testcase_13 AC 729 ms
12,416 KB
testcase_14 AC 79 ms
20,732 KB
testcase_15 AC 18 ms
12,800 KB
testcase_16 AC 667 ms
13,952 KB
testcase_17 AC 64 ms
10,624 KB
testcase_18 AC 1,822 ms
18,816 KB
testcase_19 TLE -
testcase_20 AC 465 ms
16,128 KB
testcase_21 AC 14 ms
12,160 KB
testcase_22 AC 1,867 ms
17,792 KB
testcase_23 TLE -
testcase_24 AC 365 ms
12,544 KB
testcase_25 AC 1,409 ms
15,360 KB
testcase_26 TLE -
testcase_27 AC 720 ms
15,616 KB
testcase_28 AC 622 ms
17,024 KB
testcase_29 AC 1,662 ms
17,920 KB
testcase_30 AC 952 ms
13,312 KB
testcase_31 AC 1,217 ms
12,544 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
#define all(s) (s).begin(),(s).end()
#define vcin(n) for(ll i=0;i<ll(n.size());i++) cin>>n[i]
#define rever(vec) reverse(vec.begin(), vec.end())
#define sor(vec) sort(vec.begin(), vec.end())
#define fi first
#define se second
const ll mod = 998244353;
//const ll mod = 1000000007;
const ll inf = 2000000000000000000ll;
static const long double pi = 3.141592653589793;
template<class T,class U> void chmax(T& t,const U& u){if(t<u) t=u;}
template<class T,class U> void chmin(T& t,const U& u){if(t>u) t=u;}
ll modPow(ll a, ll n, ll mod) { ll ret = 1; ll p = a % mod; while (n) { if (n & 1) ret = ret * p % mod; p = p * p % mod; n >>= 1; } return ret; }
int main() {
  /* mod は 1e9+7 */
  ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
  cout<< fixed << setprecision(10);
  ll n;
  cin>>n;
  ll a[5][n-1];
  ll f[5][n];
  vector<ll> l(5),r(5);
  for(int i=0;i<5;i++){
    cin>>l[i]>>r[i];
    l[i]--;
    r[i]--;
    for(int j=l[i];j<=r[i]-1;j++){
      cin>>a[i][j];
      f[i][j]=0;
    }
    f[i][n-1]=0;
  }
  for(int i=0;i<5;i++){
    for(int j=1;j<n;j++){
      f[i][j]=f[i][j-1]+a[i][j-1];
    }
  }
  ll m;
  cin>>m;
  vector<vector<ll>> s(5);
  map<ll,ll> u;
  for(int i=0;i<m;i++){
    ll b,si;
    cin>>b>>si;
    b--;
    assert(u[si]==0);
    u[si]++;
    s[b].push_back(si);
  }
  ll ans=0;
  for(int i=0;i<5;i++){
    for(int j=i+1;j<5;j++){
      if(l[i]>r[j]||l[j]>r[i]){
        continue;
      }
      if(l[i]<=l[j]&&r[j]<=r[i]){
        for(int k=0;k<int(s[j].size());k++){
          for(int e=0;e<int(s[i].size());e++){
            ll a=s[i][e]+f[i][l[j]]-f[i][l[i]];
          ll b=s[j][k];
          ll c=f[j][r[j]]-f[j][l[j]];
          ll d=f[i][r[j]]-f[i][l[j]];
            if(b<=a&&(b+c-d)>=a){
              ans++;
            }
          }
        }
      }
      else if(l[j]<=l[i]&&r[i]<=r[j]){
        for(int k=0;k<int(s[j].size());k++){
          for(int e=0;e<int(s[i].size());e++){
            ll a=s[i][e];
          ll b=s[j][k]+f[j][l[i]]-f[j][l[j]];
          ll c=f[j][r[i]]-f[j][l[i]];
          ll d=f[i][r[i]]-f[i][l[i]];
            if(a>=b&&(b+c-d)>=a){
              ans++;
            }
          }
        }
      }
      else if(l[i]<=l[j]){
        for(int k=0;k<int(s[j].size());k++){
          for(int e=0;e<int(s[i].size());e++){
            ll a=s[i][e]+f[i][l[j]]-f[i][l[i]];
          ll b=s[j][k];
          ll c=f[j][r[i]]-f[j][l[j]];
          ll d=f[i][r[i]]-f[i][l[j]];
            if(a>=b&&(b+c-d)>=a){
              ans++;
            }
          }
        }
      }
      else if(l[j]<=l[i]){
        for(int k=0;k<int(s[j].size());k++){
          for(int e=0;e<int(s[i].size());e++){
            ll a=s[i][e];
          ll b=s[j][k]+f[j][l[i]]-f[j][l[j]];
          ll c=f[j][r[j]]-f[j][l[i]];
          ll d=f[i][r[j]]-f[i][l[i]];
            if(a>=b&&(b+c-d)>=a){
              ans++;
            }
          }
        }
      }
    }
  }
  cout<<ans<<endl;
}
0