結果

問題 No.885 アマリクエリ
ユーザー kotatsugamekotatsugame
提出日時 2019-09-16 19:51:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 738 bytes
コンパイル時間 742 ms
コンパイル使用メモリ 78,812 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-07 02:30:57
合計ジャッジ時間 3,681 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
6,816 KB
testcase_01 AC 184 ms
6,940 KB
testcase_02 AC 193 ms
6,944 KB
testcase_03 AC 190 ms
6,944 KB
testcase_04 AC 188 ms
6,940 KB
testcase_05 AC 169 ms
6,940 KB
testcase_06 AC 135 ms
6,940 KB
testcase_07 AC 36 ms
6,940 KB
testcase_08 AC 145 ms
6,940 KB
testcase_09 AC 198 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 4 ms
6,944 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
int N;
int A[1<<17],X[1<<17];
long sum[1<<17];
main()
{
	cin>>N;
	for(int i=0;i<N;i++)cin>>A[i];
	int Q;cin>>Q;
	for(int i=0;i<Q;i++)cin>>X[i];
	vector<pair<int,int> >Y;
	Y.push_back(make_pair(X[0],0));
	for(int i=1;i<Q;i++)
	{
		if(X[i]<Y.back().first)
		{
			Y.push_back(make_pair(X[i],i));
		}
	}
	sort(Y.begin(),Y.end());
	long SA=0;
	for(int i=0;i<N;i++)
	{
		SA+=A[i];
		int now=A[i];
		while(true)
		{
			vector<pair<int,int> >::iterator it=
				upper_bound(Y.begin(),Y.end(),make_pair(now,Q));
			if(it==Y.begin())break;
			it--;
			sum[it->second]-=now-now%it->first;
			now%=it->first;
		}
	}
	for(int i=0;i<Q;i++)
	{
		cout<<(SA+=sum[i])<<endl;
	}
}
0