結果

問題 No.1201 お菓子配り-4
ユーザー beetbeet
提出日時 2020-08-28 22:13:48
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,266 bytes
コンパイル時間 3,232 ms
コンパイル使用メモリ 219,372 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-14 01:00:35
合計ジャッジ時間 47,398 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
10,020 KB
testcase_01 AC 1,770 ms
6,820 KB
testcase_02 AC 2,547 ms
6,816 KB
testcase_03 AC 1,241 ms
6,816 KB
testcase_04 AC 603 ms
6,816 KB
testcase_05 AC 1,503 ms
6,816 KB
testcase_06 AC 227 ms
6,820 KB
testcase_07 AC 678 ms
6,820 KB
testcase_08 AC 1,895 ms
6,816 KB
testcase_09 AC 1,394 ms
6,816 KB
testcase_10 AC 12 ms
6,816 KB
testcase_11 AC 361 ms
6,820 KB
testcase_12 AC 2,904 ms
6,816 KB
testcase_13 AC 80 ms
6,820 KB
testcase_14 AC 41 ms
6,816 KB
testcase_15 AC 2,280 ms
6,820 KB
testcase_16 AC 692 ms
6,816 KB
testcase_17 AC 894 ms
6,816 KB
testcase_18 AC 144 ms
6,816 KB
testcase_19 AC 136 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 3 ms
6,820 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 3,665 ms
6,816 KB
testcase_31 AC 3,681 ms
6,820 KB
testcase_32 AC 3,674 ms
6,816 KB
testcase_33 AC 3,688 ms
6,816 KB
testcase_34 AC 3,683 ms
6,816 KB
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target ("sse4")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include <bits/stdc++.h>
using namespace std;

using Int = long long;
const char newl = '\n';

const int MOD = 1e9+7;
// sum_{i=0}^{n-1} (ai + b) // m
// 0 <= a, b
template<typename T>
inline T sum_of_floor(T n,T m,T a,T b){
  T res=0;
  while(1){
    if(a>=m){
      //res+=(n-1)*n*(a/m)/2;
      //a%=m;

      T t=a/m;
      res+=(n-1)*n*t/2;
      a-=t*m;
    }
    if(b>=m){
      //res+=n*(b/m);
      //b%=m;

      T t=b/m;
      res+=n*t;
      b-=t*m;
    }

    T y=(a*n+b)/m;
    T x=y*m-b;
    if(y==0) return res;
    res+=(n-(x+a-1)/a)*y;

    T nn=y;
    T nm=a;
    T na=m;
    T nb=(a-x%a)%a;

    n=nn;
    m=nm;
    a=na;
    b=nb;
  }
  return res;
}

//INSERT ABOVE HERE
const int MAX = 2020;
int as[MAX];
int bs[MAX];
signed main(){
  cin.tie(0);
  ios::sync_with_stdio(0);

  int n,m;
  cin>>n>>m;
  for(int i=0;i<n;i++) cin>>as[i];
  for(int j=0;j<m;j++) cin>>bs[j];

  vector<long long> ans(m);
  for(int i=0;i<n;i++)
    for(int j=0;j<m;j++)
      ans[j]+=sum_of_floor<long long>(bs[j]+1,bs[j],as[i],0)%MOD;

  long long res=0;
  for(int j=0;j<m;j++){
    res+=ans[j]%MOD;
    res%=MOD;
  }
  res*=2;
  res%=MOD;
  cout<<res<<newl;
  return 0;
}
0