Submission #655588


Source Code Expand

#include <bits/stdc++.h>
using namespace std;
const int MAXN = 1e5 + 5;
const int MAXM = 1e5 + 5;
const int MAXD = 1e9 + 9;
const int LGN = 31; // 2 ^ 30 > 1e9

int n, m, d;
int a[ MAXN ];

int t[ LGN ][ MAXN ]; // terminal node when starting from node j, after playing 2 ^ i games

void solve(){
    for(int i = 1; i <= n; ++i)
        t[ 0 ][ i ] = i; // if there are no horizontal lines, it will go to itself
    for(int i = m - 1; i >= 0; --i) // lines are given from top to bottom
        swap<int>( t[ 0 ][ a[ i ] ], t[ 0 ][ a[ i ] + 1 ] );
    for(int i = 1; i < LGN; ++i)
        for(int j = 1; j <= n; ++j){
            int k = t[ i - 1 ][ j ];
            t[ i ][ j ] = t[ i - 1 ][ k ];
        }
    for(int i = 1; i <= n; ++i){
        int u = i;
        int td = d;
        for(int k = LGN - 1; k >= 0; --k){
            if( td >= ( 1 << k ) ){
                u = t[ k ][ u ];
                td -= ( 1 << k );
            }
        }
        printf("%d\n", u);
    }
}

int main(){
    scanf("%d%d%d", &n, &m, &d);
    for(int i = 0; i < m; ++i)
        scanf("%d", &a[ i ]);
    solve();
    return 0;
}

Submission Info

Submission Time
Task D - 阿弥陀
User Ow1
Language C++11 (GCC 4.8.1)
Score 0
Code Size 1162 Byte
Status WA
Exec Time 162 ms
Memory 13448 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:37:32: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d%d%d", &n, &m, &d);
                                ^
./Main.cpp:39:29: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &a[ i ]);
                             ^

Judge Result

Set Name Subtask1 Subtask2 Subtask3 Subtask4
Score / Max Score 0 / 10 0 / 20 0 / 20 0 / 50
Status
AC × 6
WA × 3
AC × 16
WA × 2
AC × 11
WA × 7
AC × 18
WA × 11
Set Name Test Cases
Subtask1 sample_1.txt, 01_i.txt, 01_random01.txt, 01_random02.txt, 01_random03.txt, 01_random04.txt, 01_random05.txt, 01_random06.txt, 01_random07.txt
Subtask2 sample_1.txt, sample_2.txt, sample_3.txt, 02_i.txt, 02_p.txt, 02_random01.txt, 02_random02.txt, 02_random03.txt, 02_random04.txt, 02_random05.txt, 02_random06.txt, 02_random07.txt, 02_random08.txt, 02_rp01.txt, 02_rp02.txt, 02_rp03.txt, 02_rp04.txt, 02_rp05.txt
Subtask3 sample_1.txt, sample_2.txt, 03_i.txt, 03_random01.txt, 03_random02.txt, 03_random03.txt, 03_random04.txt, 03_random05.txt, 03_random06.txt, 03_random07.txt, 03_random08.txt, 03_random09.txt, 03_random10.txt, 03_random11.txt, 03_random12.txt, 03_random13.txt, 03_random14.txt, 03_random15.txt
Subtask4 sample_1.txt, sample_2.txt, sample_3.txt, 04_i.txt, 04_p1.txt, 04_p2.txt, 04_random01.txt, 04_random02.txt, 04_random03.txt, 04_random04.txt, 04_random05.txt, 04_random06.txt, 04_random07.txt, 04_random08.txt, 04_random09.txt, 04_random10.txt, 04_random11.txt, 04_random12.txt, 04_random13.txt, 04_rp01.txt, 04_rp02.txt, 04_rp03.txt, 04_rp04.txt, 04_rp05.txt, 04_rp06.txt, 04_rp07.txt, 04_rp08.txt, 04_rp09.txt, 04_rp10.txt
Case Name Status Exec Time Memory
01_i.txt WA 122 ms 13408 KB
01_random01.txt AC 25 ms 1168 KB
01_random02.txt AC 28 ms 1076 KB
01_random03.txt AC 27 ms 984 KB
01_random04.txt AC 29 ms 1556 KB
01_random05.txt AC 107 ms 13108 KB
01_random06.txt WA 123 ms 13368 KB
01_random07.txt WA 120 ms 13368 KB
02_i.txt AC 28 ms 1304 KB
02_p.txt AC 29 ms 1204 KB
02_random01.txt AC 28 ms 1080 KB
02_random02.txt AC 26 ms 996 KB
02_random03.txt AC 30 ms 1128 KB
02_random04.txt AC 28 ms 1144 KB
02_random05.txt AC 31 ms 1304 KB
02_random06.txt AC 44 ms 1592 KB
02_random07.txt WA 44 ms 1592 KB
02_random08.txt WA 44 ms 1592 KB
02_rp01.txt AC 29 ms 1204 KB
02_rp02.txt AC 29 ms 1200 KB
02_rp03.txt AC 28 ms 1304 KB
02_rp04.txt AC 26 ms 1200 KB
02_rp05.txt AC 29 ms 1196 KB
03_i.txt AC 28 ms 1176 KB
03_random01.txt AC 30 ms 1076 KB
03_random02.txt AC 41 ms 1464 KB
03_random03.txt WA 45 ms 1416 KB
03_random04.txt WA 42 ms 1372 KB
03_random05.txt AC 32 ms 1124 KB
03_random06.txt AC 31 ms 1204 KB
03_random07.txt AC 34 ms 1204 KB
03_random08.txt AC 28 ms 1180 KB
03_random09.txt AC 38 ms 1256 KB
03_random10.txt WA 43 ms 1392 KB
03_random11.txt WA 46 ms 1488 KB
03_random12.txt WA 43 ms 1444 KB
03_random13.txt WA 41 ms 1460 KB
03_random14.txt WA 42 ms 1388 KB
03_random15.txt AC 34 ms 1232 KB
04_i.txt WA 128 ms 13368 KB
04_p1.txt AC 124 ms 13380 KB
04_p2.txt AC 107 ms 10936 KB
04_random01.txt WA 89 ms 8116 KB
04_random02.txt AC 70 ms 6580 KB
04_random03.txt WA 51 ms 2660 KB
04_random04.txt WA 51 ms 2500 KB
04_random05.txt WA 52 ms 3024 KB
04_random06.txt AC 89 ms 8632 KB
04_random07.txt WA 69 ms 5712 KB
04_random08.txt WA 64 ms 5036 KB
04_random09.txt WA 65 ms 3516 KB
04_random10.txt AC 85 ms 8552 KB
04_random11.txt WA 145 ms 13444 KB
04_random12.txt WA 133 ms 13400 KB
04_random13.txt WA 162 ms 13364 KB
04_rp01.txt AC 126 ms 13400 KB
04_rp02.txt AC 132 ms 13448 KB
04_rp03.txt AC 130 ms 13348 KB
04_rp04.txt AC 138 ms 13372 KB
04_rp05.txt AC 121 ms 13368 KB
04_rp06.txt AC 120 ms 13360 KB
04_rp07.txt AC 123 ms 13364 KB
04_rp08.txt AC 134 ms 13404 KB
04_rp09.txt AC 123 ms 13352 KB
04_rp10.txt AC 134 ms 13364 KB
sample_1.txt AC 31 ms 1172 KB
sample_2.txt AC 28 ms 1176 KB
sample_3.txt AC 28 ms 1176 KB