首页 > 代码库 > 【HDOJ】2319 Card Trick
【HDOJ】2319 Card Trick
水题,STL双端队列。
1 /* 2319 */ 2 #include <iostream> 3 #include <cstdio> 4 #include <cstring> 5 #include <deque> 6 #include <algorithm> 7 using namespace std; 8 9 int main() {10 int n, t;11 int i, j, k;12 deque<int> Q;13 14 #ifndef ONLINE_JUDGE15 freopen("data.in", "r", stdin);16 #endif17 18 scanf("%d", &t);19 while (t--) {20 scanf("%d", &n);21 Q.push_front(n);22 for (i=n-1; i>=1; --i) {23 Q.push_front(i);24 for (j=0; j<i; ++j) {25 k = Q.back();26 Q.pop_back();27 Q.push_front(k);28 }29 }30 k = Q.front();31 Q.pop_front();32 printf("%d", k);33 while (!Q.empty()) {34 k = Q.front();35 Q.pop_front();36 printf(" %d", k);37 }38 printf("\n");39 }40 41 return 0;42 }
【HDOJ】2319 Card Trick
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。