2018/1/14

Codeforces Good Bye 2017 B. New Year and Buggy Bot 枚举全排列、模拟

B. New Year and Buggy Bot 枚举全排列、模拟 My Solution 题意:给出一张地图,有一个出口和入口,以及一些障碍和通道。然后给出一个操作序列0123,分别表示上下左右, 求有多少种对应的可能可以使得按照该指令…

  • ACM-ICPC题解 模拟题
  • 2018/1/14
  • 185
  • 2016/12/11

    UESTC 653 扫雷 模拟

    扫雷 模拟 Source UESTC 653 (CDOJ 653) My Solution 建ch[maxn][maxn]放字符分布图,ci[maxn][maxn]放数字分布图; 然后就是遇到一个*就来一次对角线正交的字符型,就是菱形的感觉。然后开始扫,把4个方向可…

  • ACM-ICPC题解 模拟题
  • 2016/12/11
  • 121
  • 2016/3/12

    BestCoder Round #75 King’s Cake 模拟&&优化 || gcd

    King's Cake 模拟 优化  gcd source The question is from BC and hduoj 5640. My Solution //A really easy problem, I get a Runtime Error(STACK_OVERFLOW) first, then Time Limit Exceeded //next Runtime E…

  • ACM-ICPC题解 模拟题
  • 2016/3/12
  • 151
  • 2015/12/2

    UESTC 1024 Flying Chess 注意那个 1

    Flying Chess 注意那个 1<x<N 不是1<=x<N 模拟 My Solution 十分钟左右就把题目搞完了,然后,明明觉得自己对的,却是不对的,找bug找了好久,才发现 那个 1<x 把前面错掉的程序中a==b改为…

  • ACM-ICPC题解 模拟题
  • 2015/12/2
  • 127