QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#581175#9220. Bus AnalysislichenghanWA 163ms10668kbC++141.3kb2024-09-22 10:25:172024-09-22 10:25:19

Judging History

你现在查看的是最新测评结果

  • [2024-09-22 10:25:19]
  • 评测
  • 测评结果:WA
  • 用时:163ms
  • 内存:10668kb
  • [2024-09-22 10:25:17]
  • 提交

answer

#include <bits/stdc++.h>
#define ll long long
using namespace std;
const int N=1010;
const int mod=1e9+7;
struct dat{
	int s,c;
	dat shift(){
		return {(s+c)%mod,c};
	}
	friend dat operator+(const dat& ls,const dat& rs){
		return {ls.s+rs.s,ls.c+rs.c};
	}
	friend dat operator*(const dat& ls,const int& rs){
		return {(ll)ls.s*rs%mod,(ll)ls.c*rs%mod};
	}
};
inline void add(dat &x,dat y){ x=x+y; }
int n;
int a[N];
dat f[2][76][76][76];
auto F=f[0],G=f[1];
int main(){
	scanf("%d",&n);
	for(int i=1;i<=n;i++){
		scanf("%d",&a[i]);
	}
	a[0]=-100;
	F[73][74][75]={0,1};
	for(int i=1;i<=n;i++){
		swap(F,G);
		memset(F,0,sizeof(f[0]));
		int d=a[i]-a[i-1];
		for(int x=1;x<=75;x++) for(int y=x+1;y<=75;y++) for(int z=y+1;z<=75;z++) if(G[x][y][z].c){
			// printf("F[%d][%d %d %d] s=%d c=%d\n",i-1,x,y,z,G[x][y][z].s,G[x][y][z].c);
			if(x+d<=20||z+d<=75){
				// puts("a");
				add(F[min(73,x+d)][min(74,y+d)][min(75,z+d)],G[x][y][z]*2);
			}else{
				// puts("b");
				add(F[     1     ][min(74,x+d)][min(75,y+d)],G[x][y][z].shift());
				add(F[min(73,x+d)][min(74,y+d)][min(75,z+d)],G[x][y][z]);
			}
		}
	}
	dat ans={0,0};
	for(int x=0;x<=75;x++) for(int y=x+1;y<=75;y++) for(int z=y+1;z<=75;z++) if(F[x][y][z].c){
		add(ans,F[x][y][z]);
	}
	cout<<ans.s*2%mod<<endl;
}

详细

Test #1:

score: 100
Accepted
time: 4ms
memory: 10668kb

input:

3
1 8 20

output:

14

result:

ok 1 number(s): "14"

Test #2:

score: 0
Accepted
time: 0ms
memory: 10532kb

input:

5
25 45 65 85 1000000000

output:

156

result:

ok 1 number(s): "156"

Test #3:

score: -100
Wrong Answer
time: 163ms
memory: 10584kb

input:

1000
2 7 9 12 14 17 18 21 22 28 29 33 34 35 37 38 44 45 46 50 58 59 63 66 71 72 75 76 77 78 80 81 83 84 87 92 100 101 107 108 109 112 114 116 118 123 124 131 142 143 144 145 148 150 151 152 153 155 157 158 165 167 168 169 171 176 182 185 190 192 198 202 204 205 212 213 223 224 225 226 229 231 240 24...

output:

-71147720

result:

wrong answer 1st numbers differ - expected: '932594593', found: '-71147720'