結果

問題 No.1347 HS Railway
ユーザー PCTprobabilityPCTprobability
提出日時 2021-01-15 23:20:20
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 3,027 bytes
コンパイル時間 2,585 ms
コンパイル使用メモリ 165,248 KB
実行使用メモリ 31,272 KB
最終ジャッジ日時 2024-11-26 17:37:56
合計ジャッジ時間 85,544 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 1 ms
17,436 KB
testcase_02 AC 2 ms
13,644 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 2 ms
24,196 KB
testcase_06 AC 2 ms
13,640 KB
testcase_07 AC 2 ms
13,632 KB
testcase_08 AC 3 ms
13,632 KB
testcase_09 AC 2 ms
23,436 KB
testcase_10 AC 2 ms
13,636 KB
testcase_11 AC 3 ms
23,612 KB
testcase_12 AC 408 ms
18,124 KB
testcase_13 AC 773 ms
24,624 KB
testcase_14 AC 89 ms
13,640 KB
testcase_15 AC 18 ms
25,216 KB
testcase_16 AC 730 ms
15,628 KB
testcase_17 AC 70 ms
13,636 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 507 ms
18,924 KB
testcase_21 AC 14 ms
24,668 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 403 ms
13,864 KB
testcase_25 AC 1,544 ms
27,656 KB
testcase_26 TLE -
testcase_27 AC 785 ms
30,108 KB
testcase_28 AC 685 ms
19,404 KB
testcase_29 AC 1,838 ms
31,272 KB
testcase_30 AC 1,058 ms
22,268 KB
testcase_31 AC 1,326 ms
21,676 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