結果

問題 No.1965 Heavier
ユーザー 沙耶花沙耶花
提出日時 2022-06-03 21:32:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 3,959 ms
コンパイル使用メモリ 264,004 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-21 02:28:43
合計ジャッジ時間 6,529 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 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 60 ms
10,624 KB
testcase_07 AC 58 ms
10,752 KB
testcase_08 AC 80 ms
10,624 KB
testcase_09 AC 73 ms
10,624 KB
testcase_10 AC 73 ms
10,624 KB
testcase_11 AC 71 ms
10,624 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 62 ms
10,752 KB
testcase_16 AC 61 ms
10,752 KB
testcase_17 AC 43 ms
9,728 KB
testcase_18 AC 60 ms
10,496 KB
testcase_19 AC 53 ms
10,624 KB
testcase_20 AC 57 ms
10,368 KB
testcase_21 AC 52 ms
10,240 KB
testcase_22 AC 54 ms
10,368 KB
testcase_23 AC 37 ms
7,296 KB
testcase_24 AC 47 ms
9,984 KB
testcase_25 AC 80 ms
10,752 KB
testcase_26 AC 80 ms
10,624 KB
testcase_27 AC 58 ms
10,624 KB
testcase_28 AC 59 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000003

int op(int a,int b){
	return max(a,b);
}

int e(){
	return -Inf;
}
int main() {
	
	int n;
	cin>>n;
	
	vector<int> a(n),b(n);
	rep(i,n)scanf("%d",&a[i]);
	rep(i,n)scanf("%d",&b[i]);
	vector<int> x(n),y(n);
	rep(i,n){
		x[i] = a[i]+b[i];
		y[i] = a[i]-b[i];
	}
	
	segtree<int,op,e> s0(x),s1(y);
	
	long long ans = 0LL;
	int l = 0;
	rep(i,n){
		while(true){
			bool f = true;
			if(s0.prod(l,i)>=x[i])f = false;
			if(s1.prod(l,i)>=y[i])f = false;
			if(f)break;
			l++;
		}
		//cout<<i<<','<<l<<endl;
		ans += i-l;
	}
	cout<<ans<<endl;
	
}
0