Submission #1610766


Source Code Expand

#include <stdio.h>
#include <iostream>
#include <algorithm>
#include <memory.h>

using namespace std;
typedef long long LL;
const int maxn = 100005;

int x[maxn],d[maxn],p[maxn],c[maxn],w[maxn],n,M,K;

void mul(int *a,int *b)
{
	for (int i=1;i<n;i++) w[i]=b[a[i]];
	for (int i=1;i<n;i++) a[i]=w[i];
}
int main()
{
	#ifdef Amberframe
		freopen("agc006c.in","r",stdin);
		freopen("agc006c.out","w",stdout);
	#endif
	scanf("%d",&n);
	for (int i=1;i<=n;i++) scanf("%d",&x[i]);
	for (int i=1;i<n;i++) d[i]=x[i+1]-x[i];
	for (int i=1;i<n;i++) c[i]=p[i]=i;
	scanf("%d %d",&M,&K);
	for (int u,i=1;i<=M;i++)
		scanf("%d",&u),swap(p[u],p[u-1]);
	while (K) {
		if (K&1) mul(c,p);
		mul(p,p);K>>=1;
	}
	for (int i=2;i<=n;i++) x[i]=x[i-1]+d[c[i-1]];
	for (int i=1;i<=n;i++) printf("%d\n",x[i]);
	return 0;
}

Submission Info

Submission Time
Task C - Rabbit Exercise
User Amberframe
Language C++14 (GCC 5.4.1)
Score 0
Code Size 830 Byte
Status WA
Exec Time 2103 ms
Memory 2304 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:23:16: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d",&n);
                ^
./Main.cpp:24:42: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  for (int i=1;i<=n;i++) scanf("%d",&x[i]);
                                          ^
./Main.cpp:27:22: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d",&M,&K);
                      ^
./Main.cpp:29:35: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d",&u),swap(p[u],p[u-1]);
                                   ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 800
Status
AC × 3
AC × 3
WA × 7
TLE × 19
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 1_15.txt, 1_16.txt, 1_17.txt, 1_18.txt, 1_19.txt, 1_20.txt, 1_21.txt, 1_22.txt, 1_23.txt, 1_24.txt, 1_25.txt
Case Name Status Exec Time Memory
0_00.txt AC 1 ms 256 KB
0_01.txt AC 1 ms 256 KB
0_02.txt AC 1 ms 256 KB
1_00.txt TLE 2103 ms 256 KB
1_01.txt TLE 2103 ms 256 KB
1_02.txt TLE 2103 ms 2176 KB
1_03.txt TLE 2103 ms 2176 KB
1_04.txt TLE 2103 ms 1536 KB
1_05.txt WA 3 ms 256 KB
1_06.txt TLE 2103 ms 256 KB
1_07.txt TLE 2103 ms 256 KB
1_08.txt WA 6 ms 256 KB
1_09.txt TLE 2103 ms 256 KB
1_10.txt WA 3 ms 256 KB
1_11.txt TLE 2103 ms 256 KB
1_12.txt TLE 2103 ms 256 KB
1_13.txt TLE 2103 ms 256 KB
1_14.txt WA 5 ms 256 KB
1_15.txt TLE 2103 ms 384 KB
1_16.txt WA 3 ms 384 KB
1_17.txt TLE 2103 ms 1024 KB
1_18.txt TLE 2103 ms 1280 KB
1_19.txt TLE 2103 ms 1664 KB
1_20.txt TLE 2103 ms 640 KB
1_21.txt TLE 2103 ms 768 KB
1_22.txt WA 30 ms 2304 KB
1_23.txt TLE 2103 ms 1920 KB
1_24.txt WA 19 ms 2176 KB
1_25.txt TLE 2103 ms 2176 KB