結果

問題 No.510 二次漸化式
ユーザー 紙ぺーぱー紙ぺーぱー
提出日時 2017-04-29 00:19:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,544 ms / 3,000 ms
コード長 603 bytes
コンパイル時間 1,631 ms
コンパイル使用メモリ 167,852 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 18:56:36
合計ジャッジ時間 29,239 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 33 ms
6,812 KB
testcase_03 AC 33 ms
6,940 KB
testcase_04 AC 23 ms
6,944 KB
testcase_05 AC 23 ms
6,940 KB
testcase_06 AC 159 ms
6,940 KB
testcase_07 AC 163 ms
6,940 KB
testcase_08 AC 259 ms
6,940 KB
testcase_09 AC 260 ms
6,940 KB
testcase_10 AC 8 ms
6,940 KB
testcase_11 AC 7 ms
6,940 KB
testcase_12 AC 7 ms
6,940 KB
testcase_13 AC 7 ms
6,940 KB
testcase_14 AC 7 ms
6,940 KB
testcase_15 AC 7 ms
6,944 KB
testcase_16 AC 1,297 ms
6,940 KB
testcase_17 AC 803 ms
6,940 KB
testcase_18 AC 773 ms
6,944 KB
testcase_19 AC 794 ms
6,940 KB
testcase_20 AC 1,268 ms
6,944 KB
testcase_21 AC 1,261 ms
6,940 KB
testcase_22 AC 1,282 ms
6,940 KB
testcase_23 AC 2,544 ms
6,944 KB
testcase_24 AC 2,537 ms
6,940 KB
testcase_25 AC 2,533 ms
6,940 KB
testcase_26 AC 2,531 ms
6,940 KB
testcase_27 AC 2,510 ms
6,944 KB
testcase_28 AC 1,568 ms
6,944 KB
testcase_29 AC 1,563 ms
6,940 KB
testcase_30 AC 1,522 ms
6,944 KB
testcase_31 AC 9 ms
6,940 KB
testcase_32 AC 9 ms
6,940 KB
testcase_33 AC 9 ms
6,940 KB
testcase_34 AC 8 ms
6,940 KB
testcase_35 AC 8 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = unsigned long long;
const ll MOD=1000000007;
unsigned int a[100001],b[100001],x[100001],y[100001];
int main(){
	a[0]=b[0]=1;
	int n,q,p,v;
	char c;
	int f=0;
	scanf("%d%d\n",&n,&q);
	
	for(int k=0;k<q;k++){
		scanf("%c",&c);
		if(c=='a'){
			if(f!=1000000){
				for(int i=f;i<n;i++){
					b[i+1]=(1ULL*y[i]*b[i]+1)%MOD;
					a[i+1]=((1ULL*x[i]*b[i])%MOD*b[i]+a[i])%MOD;
				}
				f=1000000;		
			}
			scanf("%d\n",&p);
			printf("%d\n",a[p]);
		}
		else
		{
			scanf("%d %d\n",&p,&v);
			if(c=='x')x[p]=v;
			else y[p]=v;
			f=min(f,p);
		}
	}

}
0