What is the difference between the snapshot 10273 eat and not to eat?

Source: Internet
Author: User

Directly simulate the attack. Perform a brute-force simulation every time the CNT [I] has not been deleted.

#include <map>#include <set>#include <list>#include <cmath>#include <ctime>#include <deque>#include <stack>#include <queue>#include <cctype>#include <cstdio>#include <string>#include <vector>#include <climits>#include <cstdlib>#include <cstring>#include <iostream>#include <algorithm>#define LL long long#define PI 3.1415926535897932626using namespace std;int gcd(int a, int b) {return a % b == 0 ? b : gcd(b, a % b);}int lcm(int a, int b) {if (a < b) swap(a,b);int tmp = gcd(a,b); return a / tmp * b;}#define MAXN 1010int N;int cnt[MAXN];int src[MAXN][20];bool killed[MAXN];int kill(int day){    int ans = 300,num = 0,st;    for (int i = 1; i <= N; i++)      if (!killed[i])      {          int val = src[i][day % cnt[i]];          if (val == ans) num++;          if (val < ans)          {              ans = val;              st = i;              num = 1;          }      }    if (num == 1) return st;    return 0;}int main(){    int T;    scanf("%d",&T);    while (T--)    {        scanf("%d",&N);        for (int i = 1; i <= N; i++)        {            scanf("%d",&cnt[i]);            for (int j = 1; j < cnt[i]; j++)                scanf("%d",&src[i][j]);            scanf("%d",&src[i][0]);        }        memset(killed,false,sizeof(killed));        int tot = 0, st = 1, ed,ans = 0;        while (true)        {            bool flag = false;            int tmp = 1;            for (int i = 1; i <= N; i++)               if (!killed[i]) tmp = lcm(tmp,cnt[i]);            ed = st + tmp - 1;            for (int i = st; i <= ed; i++)            {                int k = kill(i);                if (k)                {                    killed[k] = true;                    //printf("%d %d\n",k,i);                    tot ++;                    ans = i;                    flag = true;                }            }            st = ed + 1;            if (!flag || tot >= N) break;        }        printf("%d %d\n",N - tot,ans);    }    return 0;}

 

What is the difference between the snapshot 10273 eat and not to eat?

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.