zoukankan      html  css  js  c++  java
  • 牡丹江.2014k(构造)

    K - Known Notation
    Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%lld & %llu
    Appoint description: 

    Description

    Do you know reverse Polish notation (RPN)? It is a known notation in the area of mathematics and computer science. It is also known as postfix notation since every operator in an expression follows all of its operands. Bob is a student in Marjar University. He is learning RPN recent days.

    To clarify the syntax of RPN for those who haven't learnt it before, we will offer some examples here. For instance, to add 3 and 4, one would write "3 4 +" rather than "3 + 4". If there are multiple operations, the operator is given immediately after its second operand. The arithmetic expression written "3 - 4 + 5" in conventional notation would be written "3 4 - 5 +" in RPN: 4 is first subtracted from 3, and then 5 added to it. Another infix expression "5 + ((1 + 2) × 4) - 3" can be written down like this in RPN: "5 1 2 + 4 × + 3 -". An advantage of RPN is that it obviates the need for parentheses that are required by infix.

    In this problem, we will use the asterisk "*" as the only operator and digits from "1" to "9" (without "0") as components of operands.

    You are given an expression in reverse Polish notation. Unfortunately, all space characters are missing. That means the expression are concatenated into several long numeric sequence which are separated by asterisks. So you cannot distinguish the numbers from the given string.

    You task is to check whether the given string can represent a valid RPN expression. If the given string cannot represent any valid RPN, please find out the minimal number of operations to make it valid. There are two types of operation to adjust the given string:

    1. Insert. You can insert a non-zero digit or an asterisk anywhere. For example, if you insert a "1" at the beginning of "2*3*4", the string becomes "12*3*4".
    2. Swap. You can swap any two characters in the string. For example, if you swap the last two characters of "12*3*4", the string becomes "12*34*".

    The strings "2*3*4" and "12*3*4" cannot represent any valid RPN, but the string "12*34*" can represent a valid RPN which is "1 2 * 34 *".

    Input

    There are multiple test cases. The first line of input contains an integer T indicating the number of test cases. For each test case:

    There is a non-empty string consists of asterisks and non-zero digits. The length of the string will not exceed 1000.

    Output

    For each test case, output the minimal number of operations to make the given string able to represent a valid RPN.

    Sample Input

    3
    1*1
    11*234**
    *
    

    Sample Output

    1
    0
    2
    
     
     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 
     4 int star , dig ;
     5 string s , t ;
     6 
     7 int main () {
     8         int T ;
     9         scanf ("%d" , &T ) ;
    10         while (T --) {
    11                 t.clear () ;
    12                 star = 0 ; dig = 0 ;
    13                 cin >> s ;
    14                 int minn = 0 ;
    15                 int n = s.size () ;
    16                 for (int i = 0 ; i < n ; i ++) {
    17                         if ( s[i] == '*') star ++ ;
    18                         else dig ++ ;
    19                 }
    20                 if (star == 0) {
    21                         puts ("0") ;
    22                         continue ;
    23                 }
    24                 if (dig == 0) {
    25                         printf ("%d
    " , star + 1) ;
    26                         continue ;
    27                 }
    28                 if (s[n-1] != '*') {
    29                         for (int i = 0 ; i < n ; i ++) if (s[i] == '*') {s[i] = '1' ; break ;} 
    30                         s[n-1] = '*' ;
    31                         minn ++ ;
    32                 }
    33                 if (star+1 > dig ) minn += star+1 - dig ;
    34                 for (int i = 0 ; i < star+1 - dig ; i ++) t += '1' ;
    35                 t += s ;
    36                 n = t.size () ;
    37                 int _star = 0 , _dig = 0 ;
    38                 for (int i = 0 ; i < n ; i ++) {
    39                         if (t[i] != '*') {
    40                                 _dig ++ ;
    41                         }
    42                         else {
    43                                 if (_dig > 1) _dig -- ;
    44                                 else {
    45                                         _dig ++ ;
    46                                         for (int i = n - 1 ; i >= 0 ; i --) if (s[i] != '*') {s[i] = '*' ; break ;} 
    47                                         minn ++ ;
    48                                 }
    49                         }
    50                 }
    51                 cout << minn << endl ;
    52         }
    53         return 0 ;
    54 }
    View Code

    这道题在算之前,你首先要保证两个条件符合:1,最后一位为‘*’ ;2,当前序列的 “数字总数”  >  " ‘*'的总数“ 。

    然后因为有了以上保证,现在进行交换操作肯定是最优的了,所以只要0(n)扫一遍,使每个‘*’都符合运算条件,不符合则与最后一个数字交换。

    还要注意这里有个梗,当其全部是数字时,输出0 ;

  • 相关阅读:
    个人知识管理系统Version1.0开发记录(09)
    个人知识管理系统Version1.0开发记录(08)
    个人知识管理系统Version1.0开发记录(07)
    个人知识管理系统Version1.0开发记录(06)
    个人知识管理系统Version1.0开发记录(05)
    个人知识管理系统Version1.0开发记录(04)
    登录流程
    小程序开发工具黑屏
    免费BOOTSTARP后台模板
    JQUERY重写
  • 原文地址:https://www.cnblogs.com/get-an-AC-everyday/p/4735659.html
Copyright © 2011-2022 走看看