[bzoj4397] [Usaco2015 dec]Breed Counting

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[bzoj4397] [Usaco2015 dec]Breed Counting相关的知识,希望对你有一定的参考价值。

  对三种数字分别前缀和。

技术分享
 1 #include<cstdio>
 2 #include<iostream>
 3 #include<cstring>
 4 using namespace std;
 5 const int maxn=100233;
 6 int pre[3][maxn];
 7 int i,j,k,n,m;
 8  
 9 int ra;char rx;
10 inline int read(){
11     rx=getchar(),ra=0;
12     while(rx<0||rx>9)rx=getchar();
13     while(rx>=0&&rx<=9)ra*=10,ra+=rx-48,rx=getchar();return ra;
14 }
15 int main(){
16     n=read(),m=read();int x;
17     for(i=1;i<=n;i++)
18         for(j=0,x=read()-1;j<3;j++)pre[j][i]=pre[j][i-1]+(j==x);
19     while(m--)
20         i=read(),j=read(),
21         printf("%d %d %d\\n",pre[0][j]-pre[0][i-1],pre[1][j]-pre[1][i-1],pre[2][j]-pre[2][i-1]);
22     return 0;
23 }
View Code

 

以上是关于[bzoj4397] [Usaco2015 dec]Breed Counting的主要内容,如果未能解决你的问题,请参考以下文章

bzoj4397Usaco2015 DecBreed Counting

[Usaco2015DEC] Breed Counting

bzoj4390: [Usaco2015 dec]Max Flow

bzoj4393[Usaco2015 Dec]Fruit Feast*

bzoj4396[Usaco2015 dec]High Card Wins*

bzoj4390[Usaco2015 dec]Max Flow*