結果

問題 No.2956 Substitute with Average
ユーザー vjudge1vjudge1
提出日時 2024-11-21 11:38:35
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 630 bytes
コンパイル時間 3,737 ms
コンパイル使用メモリ 280,912 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-11-21 11:39:12
合計ジャッジ時間 30,768 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

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=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