結果
問題 | No.2002 Range Swap Query |
ユーザー | ygussany |
提出日時 | 2022-06-12 13:27:08 |
言語 | C (gcc 12.3.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,062 bytes |
コンパイル時間 | 926 ms |
コンパイル使用メモリ | 31,548 KB |
実行使用メモリ | 533,716 KB |
最終ジャッジ日時 | 2024-09-23 00:03:46 |
合計ジャッジ時間 | 4,559 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,756 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 8 ms
8,076 KB |
testcase_09 | AC | 5 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 6 ms
6,944 KB |
testcase_12 | MLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
#include <stdio.h> #define SIZE 600 #define NUM 334 void swap(int* a, int* b) { if (a == b) return; *a ^= *b; *b ^= *a; *a ^= *b; } int main() { int i, N, K, Q, A[200001], B[200001]; scanf("%d %d %d", &N, &K, &Q); for (i = 1; i <= K; i++) scanf("%d %d", &(A[K-i]), &(B[K-i])); int j, k = K / SIZE; static int block[NUM][400001], tmp[400001]; for (i = 0; i <= k; i++) { for (j = 1; j <= N; j++) tmp[j] = j; for (j = 0; j < SIZE && j + i * SIZE < K; j++) swap(&(tmp[A[j+i*SIZE]]), &(tmp[B[j+i*SIZE]])); for (j = 1; j <= N; j++) block[i][tmp[j]] = j; } int q, L, R, X; for (q = 1; q <= Q; q++) { scanf("%d %d %d", &L, &R, &X); L ^= R; R ^= L; L ^= R; L = K - L; R = K - R; for (j = L; j <= R && j % SIZE != 0; j++) { if (X == A[j]) X = B[j]; else if (X == B[j]) X = A[j]; } if (j <= R) { for (i = j / SIZE; (i + 1) * SIZE <= R; i++) X = block[i][X]; for (j = i * SIZE; j <= R; j++) { if (X == A[j]) X = B[j]; else if (X == B[j]) X = A[j]; } } printf("%d\n", X); } fflush(stdout); return 0; }