博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LRJ-Example-06-02-Uva514
阅读量:5010 次
发布时间:2019-06-12

本文共 1461 字,大约阅读时间需要 4 分钟。

1 #define _CRT_SECURE_NO_WARNINGS 2  3 #include
4 #include
5 using namespace std; 6 const int MAXN = 1000 + 10; 7 8 int n, target[MAXN]; 9 10 int main() {11 // scanf() returns the number of input items matched and assigned12 while (scanf("%d", &n) == 1 && n != 0) {13 while (true) {14 // the last line of the block contains just 015 scanf("%d", &target[1]);16 if (target[1] == 0) { printf("\n"); break; }17 18 for (int i = 2; i <= n; i++)19 scanf("%d", &target[i]);20 21 stack
s;22 // assume an input array input[] containing 1, 2, ..., n in sequence, input[i] == i23 // A is the index of input[], and B is the index of target[]24 int A = 1, B = 1;25 bool ok = true;26 while (B <= n) {27 if (A == target[B]){28 A++;29 B++;30 } else if (!s.empty() && s.top() == target[B]){31 s.pop();32 B++;33 } else if (A <= n){34 s.push(A++);35 } else {36 ok = false;37 break;38 }39 }40 41 printf("%s\n", ok ? "Yes" : "No");42 }43 }44 return 0;45 }

 

转载于:https://www.cnblogs.com/patrickzhou/p/7206600.html

你可能感兴趣的文章
Redis
查看>>
字段和属性的区别
查看>>
HTTP(一)工作机制
查看>>
条形码扫描枪数据读取的问题
查看>>
$this->autoRender = false
查看>>
健壮的 Java 基准测试
查看>>
zendoptimizer配置(转)
查看>>
phpstorm查看类的继承关系
查看>>
git create clone(仓库)
查看>>
chmod修改文件权限的命令
查看>>
新博客牵至简书
查看>>
矩阵求逆
查看>>
在 Windows 8、Windows 10 桌面模式下的 .NET Framework 程序中,引用 Windows.Runtime 的 API。...
查看>>
2015 8月24号 工作计划与实行
查看>>
MVC AJAX
查看>>
Google Map API V3开发(6) 代码
查看>>
Kafka初入门简单配置与使用
查看>>
第三章Git使用入门
查看>>
Amd,Cmd, Commonjs, ES6 import/export的异同点
查看>>
cocos2dx-Lua与Java通讯机制
查看>>