結果
| 問題 | 
                            No.619 CardShuffle
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2017-12-19 18:10:02 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 2,796 bytes | 
| コンパイル時間 | 1,470 ms | 
| コンパイル使用メモリ | 160,904 KB | 
| 実行使用メモリ | 10,260 KB | 
| 最終ジャッジ日時 | 2024-12-22 22:29:27 | 
| 合計ジャッジ時間 | 6,769 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 | 
| other | AC * 24 WA * 11 | 
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:126:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  126 |         scanf("%d",&N);
      |         ~~~~~^~~~~~~~~
main.cpp:137:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  137 |                 scanf("%s",tmp);
      |                 ~~~~~^~~~~~~~~~
main.cpp:147:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  147 |         scanf("%d",&Q);
      |         ~~~~~^~~~~~~~~
main.cpp:152:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  152 |                 scanf("%s",tmp);
      |                 ~~~~~^~~~~~~~~~
main.cpp:153:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  153 |                 scanf("%d%d",&x,&y);
      |                 ~~~~~^~~~~~~~~~~~~~
            
            ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
const int MOD = 1e9+7;
int N;
char v[200010];
const int blk = 200;
int bl[200010],L[200010],R[200010];
int S[200010],rv[200010],lv[200010],mv[200010],B;
int fp[200010],lp[200010];
void upd(int &x)
{
	if (x < 0) x += MOD;
	if (x >= MOD) x -= MOD;
}
int calc(int l,int r)//num---num
{
	assert(!(l==1 && r==100000));
	int sum = 0,nowv = 1;
	//printf("calc %d %d\n",l,r);
	for (int i=l;i<=r;i+=2)
	{
		nowv = (1LL * nowv * (v[i] - '0')) % MOD;
		//printf("%d %d\n",i,nowv);
		if (v[i+1] == '+' || i==r)
		{
			upd(sum += nowv);
			nowv = 1;
		}
	}
	//printf("calc %d %d=%d\n",l,r,sum);
	return sum;
}
void build(int b)
{
	fp[b] = lp[b] = L[b];
	for (int i=L[b]+1;i<R[b];i+=2)
	{
		if (v[i] == '+')
		{
			if (!fp[b]) fp[b] = i;
			lp[b] = i;
		}
	}
	//printf("start calc %d~%d %d %d\n",L[b],R[b],fp[b],lp[b]);
	S[b] = calc(L[b],R[b]-1);
	lv[b] = calc(L[b],fp[b]-1);
	rv[b] = calc(lp[b]+1,R[b]-1);
	mv[b] = S[b] - lv[b];
	upd(mv[b]);
	upd(mv[b] -= rv[b]);
}
int query(int x,int y)
{
	//printf("query %d %d\n",x,y);
	if (bl[x] == bl[y]) return calc(x,y);
	int sum = 0,nowv = 1; 
	for (int i=x;i<R[bl[x]];i+=2)
	{
		nowv = 1LL * nowv * (v[i] - '0') % MOD;
		if (v[i+1] == '+')
		{
			upd(sum += nowv);
			nowv = 1;	
		}
	}
	//printf("%d %d\n",sum,nowv);
	for (int i=bl[x]+1;i<bl[y];i++)
	{
		//printf("blk %d\n",i); 
		if (v[R[i]] == '+')
		{
			if (fp[i])
			{
				nowv = 1LL * nowv * lv[i] % MOD;
				upd(sum += nowv);
				upd(sum += S[i]);
				upd(sum -= lv[i]);
			}
			else
			{
				nowv = 1LL * nowv * S[i] % MOD;
				upd(sum += nowv);
			}
			nowv = 1;
		}
		else
		{
			if (fp[i])
			{
				nowv = 1LL * nowv * lv[i] % MOD;
				upd(sum += nowv);
				upd(sum += mv[i]);
				nowv = rv[i];
			}
			else
			{
				nowv = 1LL * nowv * S[i] % MOD;
			}
		}
		//printf("%d %d\n",sum,nowv);
	}
	for (int i=L[bl[y]];i<=y;i+=2)
	{
		nowv = 1LL * nowv * (v[i] - '0') % MOD;
		if (v[i+1] == '+' || i==y)
		{
			upd(sum += nowv);
			nowv = 1;	
		}
	}
	//printf("%d %d\n",sum,nowv);
	return sum;
}
int main()
{
	//freopen("619.in","r",stdin);
	//freopen("619.out","w",stdout);
	scanf("%d",&N);
	for (int i=1;i<=N;i++)bl[i] = (i - 1) / blk + 1;
	B = bl[N];
	for (int i=1;i<=N;i++)
	{
		if (bl[i] != bl[i-1]) L[bl[i]] = i;
		if (bl[i] != bl[i+1]) R[bl[i]] = i;
	}
	for (int i=1;i<=N;i++)
	{
		char tmp[2];
		scanf("%s",tmp);
		v[i] = tmp[0];
	}
	
	for (int i=1;i<=B;i++)
	{
		build(i);
		//printf("%d: fp=%d lp=%d S=%d\n",i,fp[i],lp[i],S[i]);
	}
	int Q;
	scanf("%d",&Q);
	while(Q--)
	{
		char tmp[2];
		int x,y;
		scanf("%s",tmp);
		scanf("%d%d",&x,&y);
		if (tmp[0] == '?')
		{
			printf("%d\n",query(x,y));
		}
		else
		{
			//puts("wow");
			if (v[x] != v[y])
			{
				swap(v[x],v[y]);
				build(bl[x]);
				build(bl[y]);
			}
		}
	}
}