답안 #742566

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
742566 2023-05-16T13:09:55 Z Dan4Life Fancy Fence (CEOI20_fancyfence) C++17
0 / 100
2 ms 212 KB
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pb push_back
#define sz(a) (int)a.size()
const int mxN = (int)1e5+10;
const int MOD = (int)1e9+7;

int Tw, Th, inv;
int n, h[mxN], w[mxN];
vector<pair<int,int>> v;

int poww(int a, int b){
	if(!b) return 1;
	int x = poww(a,b/2);
	x*=x, x%=MOD;
	if(b&1) x*=a, x%=MOD;
	return x;
}

int mul(int a, int b) { return a*b % MOD; }
int comb(int a){return mul(mul(a,a+1),inv);}

int32_t main(){
	cin >> n; int ans = 0; inv = poww(2,MOD-2);
	for(int i = 1; i <= n; i++) cin >> h[i];
	for(int i = 1; i <= n; i++) cin >> w[i];
	for(int i = 1; i <= n; i++){
		int W = w[i]; Tw+=w[i], Th+=h[i]; Tw%=MOD, Th%=MOD;
		while(i<n and h[i]==h[i+1]) W+=w[++i], W%=MOD;
		v.pb({h[i],W});
	}
	Tw%=MOD, Th%=MOD;
	cout << mul(comb(Tw),comb(Th)); return 0;
	n = sz(v);
	for(auto [h,w] : v){
 		if(h==1) continue;
		ans+=comb(w)*2, ans%=MOD;
	}
	cout << ans;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -