結果

問題 No.510 二次漸化式
ユーザー 紙ぺーぱー紙ぺーぱー
提出日時 2017-04-29 00:13:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 637 bytes
コンパイル時間 1,733 ms
コンパイル使用メモリ 167,824 KB
実行使用メモリ 13,764 KB
最終ジャッジ日時 2024-09-13 19:34:47
合計ジャッジ時間 37,452 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,764 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 33 ms
6,944 KB
testcase_03 AC 33 ms
6,940 KB
testcase_04 AC 32 ms
6,940 KB
testcase_05 AC 33 ms
6,944 KB
testcase_06 AC 260 ms
6,944 KB
testcase_07 AC 256 ms
6,944 KB
testcase_08 AC 256 ms
6,944 KB
testcase_09 AC 260 ms
6,940 KB
testcase_10 AC 7 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,940 KB
testcase_16 AC 1,296 ms
6,944 KB
testcase_17 AC 1,258 ms
6,940 KB
testcase_18 AC 1,278 ms
6,940 KB
testcase_19 AC 1,236 ms
6,944 KB
testcase_20 AC 1,255 ms
6,940 KB
testcase_21 AC 1,276 ms
6,940 KB
testcase_22 AC 1,284 ms
6,940 KB
testcase_23 AC 2,552 ms
6,948 KB
testcase_24 AC 2,552 ms
6,944 KB
testcase_25 AC 2,527 ms
6,944 KB
testcase_26 AC 2,536 ms
6,940 KB
testcase_27 AC 2,502 ms
6,940 KB
testcase_28 AC 2,541 ms
6,940 KB
testcase_29 AC 2,521 ms
6,944 KB
testcase_30 AC 2,508 ms
6,940 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

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;
	scanf("%d%d\n",&n,&q);
	for(int i=0;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;
	}
	for(int k=0;k<q;k++){
		scanf("%c",&c);
		if(c=='a'){
			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;
			for(int i=p;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;
			}
		}
	}

}
0