2018南京现场赛K 随机输出
Posted chen99
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2018南京现场赛K 随机输出相关的知识,希望对你有一定的参考价值。
题目链接:http://codeforces.com/gym/101981/attachments
n和m太小,空地联通无环,总步数太大,直接随机输出5w个方向
#include<iostream> #include<algorithm> #include<ctime> using namespace std; int t,a,b,c,d,k; int main() { srand((unsigned)time(0)); int n,m; char op,ch[4]={‘L‘,‘R‘,‘U‘,‘D‘}; cin>>n>>m; for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) cin>>op; } for(int i=1;i<=50000;i++) { cout<<ch[rand()%4]; } cout<<endl; return 0; }
以上是关于2018南京现场赛K 随机输出的主要内容,如果未能解决你的问题,请参考以下文章
HDU - 5136 2014icpc南京现场赛J 计数dp