結果

問題 No.510 二次漸化式
ユーザー myantamyanta
提出日時 2017-04-29 01:21:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,455 ms / 3,000 ms
コード長 815 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 23,808 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-13 18:59:04
合計ジャッジ時間 17,789 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 25 ms
6,944 KB
testcase_03 AC 21 ms
6,940 KB
testcase_04 AC 18 ms
6,940 KB
testcase_05 AC 19 ms
6,944 KB
testcase_06 AC 121 ms
6,940 KB
testcase_07 AC 119 ms
6,940 KB
testcase_08 AC 148 ms
6,944 KB
testcase_09 AC 146 ms
6,944 KB
testcase_10 AC 7 ms
6,944 KB
testcase_11 AC 6 ms
6,940 KB
testcase_12 AC 6 ms
6,944 KB
testcase_13 AC 7 ms
6,944 KB
testcase_14 AC 7 ms
6,940 KB
testcase_15 AC 7 ms
6,948 KB
testcase_16 AC 733 ms
6,944 KB
testcase_17 AC 561 ms
6,944 KB
testcase_18 AC 566 ms
6,940 KB
testcase_19 AC 562 ms
6,940 KB
testcase_20 AC 700 ms
6,944 KB
testcase_21 AC 704 ms
6,944 KB
testcase_22 AC 727 ms
6,940 KB
testcase_23 AC 1,446 ms
6,940 KB
testcase_24 AC 1,455 ms
6,944 KB
testcase_25 AC 1,424 ms
6,944 KB
testcase_26 AC 1,414 ms
6,940 KB
testcase_27 AC 1,400 ms
6,944 KB
testcase_28 AC 1,139 ms
6,944 KB
testcase_29 AC 1,128 ms
6,944 KB
testcase_30 AC 1,122 ms
6,944 KB
testcase_31 AC 8 ms
6,944 KB
testcase_32 AC 8 ms
6,944 KB
testcase_33 AC 8 ms
6,944 KB
testcase_34 AC 9 ms
6,944 KB
testcase_35 AC 8 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:48:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   48 |         scanf("%d%d\n", &n, &q);
      |         ~~~~~^~~~~~~~~~~~~~~~~~
main.cpp:54:22: warning: ignoring return value of ‘char* fgets(char*, int, FILE*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   54 |                 fgets(oneline, sizeof(oneline), stdin);
      |                 ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<cstdio>


typedef long long ll;


ll a[100000+1], b[100000+1], x[100000+1], y[100000+1];
int last_update;


ll m(ll v)
{
	return v%1000000007;
}


void min_u(int &m, int v)
{
	if(m>v) m=v;
}


void max_u(int &m, int v)
{
	if(m<v) m=v;
}


void solve(int i)
{
	int j;

	for(j=last_update;j<i;j++)
	{
		a[j+1]=m(m(x[j]*b[j])*b[j]+a[j]);
		b[j+1]=m(y[j]*b[j]+1);
	}
	max_u(last_update, i);
	printf("%lld\n", a[i]);
}


int main(void)
{
	char oneline[100], t;
	int i, j, v, n, q;

	scanf("%d%d\n", &n, &q);
	last_update=0;
	for(j=0;j<q;j++)
	{
		a[0]=b[0]=1;

		fgets(oneline, sizeof(oneline), stdin);
		sscanf(oneline, "%c%d%d", &t, &i, &v);
		if(t=='x')
		{
			x[i]=v;
			min_u(last_update, i);
		}
		if(t=='y')
		{
			y[i]=v;
			min_u(last_update, i);
		}
		if(t=='a')
		{
			solve(i);
		}
	}

	return 0;
}
0