1. 程式人生 > >USACO 1.2.4_beads

USACO 1.2.4_beads

/*
ID: cjn77881
LANG: C
TASK: beads
*/

#include <stdio.h>
#include <string.h>

char s[701],s2[701];
int N,ans,cal,loc;

int calculate(int x,int y){
	int js = 0;
	int i,j;
	i = x;
	j = y;
	char c1;
	char c2;
	
	while ((i < y) && (s[i] == 'w')) i++; //while的判斷條件中若寫作i++,則其至少執行一次,寫到括號外面可能不執行。 
c1 = s[i]; i = x; while ((j > x) && (s[j] == 'w')) j--; c2 = s[j]; j = y; while ((i <= y) && ((s[i] == c1) || (s[i] == 'w'))) { i++; js++; } while ((j >= x) && ((s[j] == c2) || (s[j] == 'w'))) { j--; js++; } if (i <= j) return js; else return N;
} int main(){ FILE *fin = fopen("beads.in","r"); FILE *fout = fopen("beads.out","w"); fscanf(fin,"%d",&N); fscanf(fin,"%s",s); strcpy(s2,s); //後一個字串元素的值,賦予第一個元素 ,存在擷取一段賦予的寫法 strcat(s,s2); //將後一個字串元素的值,接到第一個元素之後 ,也存在擷取一段再接上的寫法 //擷取一段長度的再操作的函式,函式名中含有n 例如:strncpy 和 strncat //printf("%s\n",s);
ans = 0; for (int i=0;i<N;i++){ cal = calculate(i,i+N-1); if (cal > ans) { ans = cal; loc = i; } } fprintf(fout,"%d\n",ans); return 0; } /* 此外還有一種O(n)的動歸寫法 考慮r[i]表示紅珠子到i位置最多連續存在多少顆; b[i]為藍珠子到i位置最多連續存在多少顆; 當前i珠子為紅,則r[i]++; b[i]=0; 當前i珠子為藍,則r[i]=0; b[i]++; 當前i珠子為白,則r[i]++; b[i]++; 然後從左向右做一遍動歸,得到lr,lb陣列 再從右向左做一遍動歸,得到rr,rb陣列 max(lr[i],lb[i])+max(rr[i+N-1],rb[i+n-1]) 的結果再取最大值就是答案。 效率為 O(2*N) */