結果

問題 No.2956 Substitute with Average
ユーザー vjudge1vjudge1
提出日時 2024-11-21 11:39:55
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,812 ms / 3,000 ms
コード長 634 bytes
コンパイル時間 4,139 ms
コンパイル使用メモリ 280,456 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-11-21 11:40:38
合計ジャッジ時間 30,687 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1,700 ms
13,824 KB
testcase_11 AC 1,728 ms
13,696 KB
testcase_12 AC 1,728 ms
13,952 KB
testcase_13 AC 1,728 ms
13,824 KB
testcase_14 AC 1,670 ms
13,568 KB
testcase_15 AC 1,641 ms
13,824 KB
testcase_16 AC 1,725 ms
13,824 KB
testcase_17 AC 1,656 ms
13,824 KB
testcase_18 AC 206 ms
14,080 KB
testcase_19 AC 1,709 ms
14,080 KB
testcase_20 AC 637 ms
14,080 KB
testcase_21 AC 1,237 ms
13,952 KB
testcase_22 AC 1,794 ms
13,952 KB
testcase_23 AC 18 ms
6,816 KB
testcase_24 AC 1,687 ms
14,080 KB
testcase_25 AC 1,738 ms
14,080 KB
testcase_26 AC 1,812 ms
14,208 KB
testcase_27 AC 1,784 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int MAXN=1e5+100,MAXM=31;
int n;
int a[MAXN],max1,b[MAXN],sum[MAXN];
map<int,int> mp1,mp2;
int main(){
	cin >> n;
	for (int i=1; i<=n; i++) {
    cin>> a[i];
    max1=max(max1,a[i]);
	}
	long long ans=1ll*n*(n+1)/2+1;
	for (int i=1; i<=max1; i++) {
    mp1.clear(),mp2.clear();
    for (int j=1; j<=n; j++) {
      b[j]=a[j]-i;
      sum[j]=sum[j-1]+b[j];
    }
    for (int j=1; j<=n; j++) {
      if (b[j]==0) {
        mp1[sum[j-1]]++;
				ans-=mp1[sum[j]]+mp2[sum[j]];
      } else {
        mp2[sum[j-1]]++;
        ans-=mp1[sum[j]];
      }
    }
	}
	cout << ans;
	return 0;
}
0