結果

問題 No.429 CupShuffle
ユーザー くれちーくれちー
提出日時 2016-11-18 20:57:38
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 756 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 21,888 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 17:02:30
合計ジャッジ時間 995 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 0 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 0 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 29 ms
5,376 KB
testcase_12 AC 28 ms
5,376 KB
testcase_13 AC 28 ms
5,376 KB
testcase_14 AC 29 ms
5,376 KB
testcase_15 AC 0 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:15:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |         scanf("%d %d %d", &n, &k, &x);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
main.c:24:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   24 |                 scanf("%d %d", &a[i], &b[i]);
      |                 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
main.c:27:33: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   27 |         for (i = 0; i < n; i++) scanf("%d", &c[i]);
      |                                 ^~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

void swap(int *a, int *b) {
	int tmp = *a;
	*a = *b;
	*b = tmp;
}

int main() {
	int n, k, x;
	static int a[100001], b[100001], c[100001];
	static int cup[100001];
	int i;

	scanf("%d %d %d", &n, &k, &x);
	for (i = 0; i < n; i++) cup[i] = i + 1;

	for (i = 0; i < k; i++) {
		if (i == x - 1) {
			getchar();
			while (getchar() != '\n');
			continue;
		}
		scanf("%d %d", &a[i], &b[i]);
		if (i < x) swap(&cup[a[i] - 1], &cup[b[i] - 1]);
	}
	for (i = 0; i < n; i++) scanf("%d", &c[i]);
	for (i = k; i >= x; i--) swap(&c[a[i] - 1], &c[b[i] - 1]);

	int r1 = -1, r2;

	for (i = 0; i < n; i++) {
		if (cup[i] != c[i]) {
			if (r1 == -1) r1 = i + 1;
			else {
				r2 = i + 1;
				break;
			}
		}
	}

	printf("%d %d\n", r1, r2);
	return 0;
}
0