結果
問題 | No.429 CupShuffle |
ユーザー | Bantako |
提出日時 | 2017-07-26 00:04:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 33 ms / 2,000 ms |
コード長 | 746 bytes |
コンパイル時間 | 1,343 ms |
コンパイル使用メモリ | 159,244 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-09 17:28:27 |
合計ジャッジ時間 | 2,265 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,816 KB |
testcase_02 | AC | 3 ms
6,816 KB |
testcase_03 | AC | 3 ms
6,816 KB |
testcase_04 | AC | 4 ms
6,820 KB |
testcase_05 | AC | 3 ms
6,820 KB |
testcase_06 | AC | 3 ms
6,816 KB |
testcase_07 | AC | 3 ms
6,816 KB |
testcase_08 | AC | 3 ms
6,820 KB |
testcase_09 | AC | 3 ms
6,820 KB |
testcase_10 | AC | 6 ms
6,816 KB |
testcase_11 | AC | 33 ms
6,816 KB |
testcase_12 | AC | 32 ms
6,820 KB |
testcase_13 | AC | 33 ms
6,816 KB |
testcase_14 | AC | 33 ms
6,820 KB |
testcase_15 | AC | 3 ms
6,816 KB |
コンパイルメッセージ
main.cpp:2:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type] 2 | main(){ | ^~~~ main.cpp: In function ‘int main()’: main.cpp:9:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | scanf("%d%d%d",&N,&K,&X); | ~~~~~^~~~~~~~~~~~~~~~~~~ main.cpp:11:25: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | if(i+1==X){scanf("%*s%*s");continue;} | ~~~~~^~~~~~~~~~ main.cpp:12:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%d%d",&A[i],&B[i]); | ~~~~~^~~~~~~~~~~~~~~~~~~~ main.cpp:15:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | scanf("%d",&last[i]); | ~~~~~^~~~~~~~~~~~~~~
ソースコード
#include<bits/stdc++.h> main(){ int first[100000],last[100000]; for(int i = 0;i < 100000;i++){ first[i] = i+1; } int N,K,X; int A[100000],B[100000]; scanf("%d%d%d",&N,&K,&X); for(int i = 0;i < K;i++){ if(i+1==X){scanf("%*s%*s");continue;} scanf("%d%d",&A[i],&B[i]); } for(int i = 0;i < N;i++){ scanf("%d",&last[i]); } // using std::swap; for(int i = 0;i < X;i++){ swap(first[A[i]-1],first[B[i]-1]); } for(int i = K-1;i >= X;i--){ std::swap(last[A[i]-1],last[B[i]-1]); } int p[2] = {0,0}; for(int i = 0;i < N;i++){ if(first[i]!=last[i]){ p[p[0]?1:0] = i+1; } } printf("%d %d\n",p[0],p[1]); }