Submission #9157


Source Code Expand

#include <iostream>
#include <vector>
 
using namespace std;
 
string pattern[16] = {"AA","AB","AX","AY",
		      "BA","BB","BX","BY",
		      "XA","XB","XX","XY",
		      "YA","YB","YX","YY"};
 
int main(void){
  int count;
  cin >> count;
  string command;
  cin >> command;
 
  int min_length = count;
  for(int l=0;l<16;l++){
    for(int r=0;r<16;r++){
      int length = 0;
      int index = 0;
      while(true){
	int tmpLength;
	int tmpLengthL = command.find(pattern[l],index);
	int tmpLengthR = command.find(pattern[r],index);
	//cout << tmpLengthL << tmpLengthR << endl;
 
	if((tmpLengthL < 0) & (tmpLengthR < 0)){
	  length += (command.size() - index);
	  break;
	}
 
	if(tmpLengthL < tmpLengthR){
	  tmpLength = tmpLengthL;
	}
	else{
	  tmpLength = tmpLengthR;
	}
 
	if(tmpLengthL < 0){
	  tmpLength = tmpLengthR;
	}
	if(tmpLengthR < 0){
	  tmpLength = tmpLengthL;
	}
	
	length += (tmpLength + 1 - index);
	index += (tmpLength + 2 - index);
      }
      if(length < min_length){
	min_length = length;
      }
    }
  }
  cout << min_length << endl;
 
  return 0;
}

Submission Info

Submission Time
Task C - コマンド入力
User airwalker00
Language C++ (GCC 4.4.7)
Score 100
Code Size 1135 Byte
Status AC
Exec Time 69 ms
Memory 816 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 45
Set Name Test Cases
All 00_retmax.txt, 00_retmin.txt, 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 01_rnd_00.txt, 01_rnd_01.txt, 01_rnd_02.txt, 01_rnd_03.txt, 01_rnd_04.txt, 01_rnd_05.txt, 01_rnd_06.txt, 01_rnd_07.txt, 01_rnd_08.txt, 01_rnd_09.txt, 01_rnd_10.txt, 01_rnd_11.txt, 01_rnd_12.txt, 01_rnd_13.txt, 01_rnd_14.txt, 01_rnd_15.txt, 01_rnd_16.txt, 01_rnd_17.txt, 01_rnd_18.txt, 01_rnd_19.txt, 02_twothree_00.txt, 02_twothree_01.txt, 02_twothree_02.txt, 02_twothree_03.txt, 02_twothree_04.txt, 02_twothree_05.txt, 02_twothree_06.txt, 02_twothree_07.txt, 02_twothree_08.txt, 02_twothree_09.txt, 02_twothree_10.txt, 02_twothree_11.txt, 02_twothree_12.txt, 02_twothree_13.txt, 02_twothree_14.txt, 02_twothree_15.txt, 02_twothree_16.txt, 02_twothree_17.txt, 02_twothree_18.txt, 02_twothree_19.txt
Case Name Status Exec Time Memory
00_retmax.txt AC 39 ms 788 KB
00_retmin.txt AC 25 ms 784 KB
00_sample_00.txt AC 21 ms 788 KB
00_sample_01.txt AC 22 ms 788 KB
00_sample_02.txt AC 22 ms 768 KB
01_rnd_00.txt AC 27 ms 788 KB
01_rnd_01.txt AC 28 ms 796 KB
01_rnd_02.txt AC 28 ms 788 KB
01_rnd_03.txt AC 27 ms 784 KB
01_rnd_04.txt AC 27 ms 768 KB
01_rnd_05.txt AC 26 ms 788 KB
01_rnd_06.txt AC 28 ms 784 KB
01_rnd_07.txt AC 27 ms 768 KB
01_rnd_08.txt AC 28 ms 796 KB
01_rnd_09.txt AC 27 ms 788 KB
01_rnd_10.txt AC 27 ms 784 KB
01_rnd_11.txt AC 28 ms 792 KB
01_rnd_12.txt AC 26 ms 788 KB
01_rnd_13.txt AC 26 ms 784 KB
01_rnd_14.txt AC 28 ms 792 KB
01_rnd_15.txt AC 27 ms 764 KB
01_rnd_16.txt AC 27 ms 792 KB
01_rnd_17.txt AC 27 ms 756 KB
01_rnd_18.txt AC 27 ms 768 KB
01_rnd_19.txt AC 28 ms 784 KB
02_twothree_00.txt AC 59 ms 804 KB
02_twothree_01.txt AC 67 ms 784 KB
02_twothree_02.txt AC 59 ms 788 KB
02_twothree_03.txt AC 61 ms 736 KB
02_twothree_04.txt AC 56 ms 788 KB
02_twothree_05.txt AC 55 ms 816 KB
02_twothree_06.txt AC 57 ms 764 KB
02_twothree_07.txt AC 67 ms 784 KB
02_twothree_08.txt AC 58 ms 788 KB
02_twothree_09.txt AC 57 ms 784 KB
02_twothree_10.txt AC 54 ms 792 KB
02_twothree_11.txt AC 56 ms 788 KB
02_twothree_12.txt AC 57 ms 792 KB
02_twothree_13.txt AC 66 ms 792 KB
02_twothree_14.txt AC 57 ms 760 KB
02_twothree_15.txt AC 64 ms 792 KB
02_twothree_16.txt AC 54 ms 772 KB
02_twothree_17.txt AC 69 ms 792 KB
02_twothree_18.txt AC 61 ms 784 KB
02_twothree_19.txt AC 58 ms 784 KB