zoukankan      html  css  js  c++  java
  • Codeforces Gym 100513M M. Variable Shadowing 暴力

    M. Variable Shadowing

    Time Limit: 20 Sec

    Memory Limit: 256 MB

    题目连接

    http://codeforces.com/gym/100513/problem/M

    Description

    In computer programming, variable shadowing occurs when a variable declared within a certain scope has the same name as a variable declared in an outer scope. The outer variable is said to be shadowed by the inner variable, and this can lead to a confusion. If multiple outer scopes contain variables with the same name, the variable in the nearest scope will be shadowed.

    Formally, a declared variable shadows another declared variable if the following conditions are met simultaneously:

    • the other variable is declared in outer scope and before (in terms of position in program source code) the declaration of the first variable,
    • the other variable is nearest among all variables satisfying the condition above.

    Here is an example containing exactly one variable shadowing:


    /* Prints a+max(b,c) */
    int main() {
    int a, b, c;
    cin » a » b » c;
    if (b > c) {
    int a = b; // <– variable 'a' shadows outer 'a'
    int x = c;
    b = x;
    c = a;
    }
    int x = a + c; // <– no shadowing here
    cout « x « endl;
    }

    Variable shadowing is permitted in many modern programming languages including C++, but compilers can warn a programmer about variable shadowing to avoid possible mistakes in a code.

    Consider a trivial programming language that consists only of scopes and variable declarations. The program consists of lines, each line contains only characters '{', '}', 'a' ... 'z' separated by one or more spaces.

    • Scopes. A scope (excluding global) is bounded with a pair of matching curly brackets '{' and '}'. A scope is an inner scope relative to another scope if brackets of the first scope are enclosed by brackets of the second scope.
    • Variables. A variable declaration in this language is written just as a name of the variable. In addition all variables are lowercase Latin letters from 'a' to 'z' inclusive (so there are at most 26 variable names). A variable is declared in each scope at most once.

    Given a syntactically correct program (i.e. curly brackets form a regular bracket sequence), write an analyzer to warn about each fact of variable shadowing. Warnings should include exact positions of shadowing and shadowed variables. Your output should follow the format shown in the examples below.

    Input

    The first line contains integer n (1 ≤ n ≤ 50) — the number of lines in the program. The following n lines contain the program. Each program line consists of tokens '{', '}', 'a' ... 'z' separated by one or more spaces. The length of each line is between 1 and 50 characters. Each program line contains at least one non-space character.

    The curly brackets in the program form a regular bracket sequence, so each opening bracket '{' has uniquely defined matching closing bracket '}' and vice versa. A variable is declared in a scope at most once. Any scope (including global) can be empty, i.e. can contain no variable declarations.

    Output

    For each fact of shadowing write a line in form "r1:c1: warning: shadowed declaration of ?, the shadowed position is r2:c2", where "r1:c1" is the number of line and position in line of shadowing declaration and "r2:c2" is the number of line and position in line of shadowed declaration. Replace '?' with the letter 'a' ... 'z' — the name of shadowing/shadowed variable. If multiple outer scopes have variables named as the shadowing variable, the variable in the nearest outer scope is shadowed.

    Print warnings in increasing order of r1, or in increasing order of c1 if values r1 are equal. Leave the output empty if there are no variable shadowings.

    Sample Input

    1
    { a { b { a } } } b

    Sample Output

    1:11: warning: shadowed declaration of a, the shadowed position is 1:3

    HINT

    题意

    给你一堆字符串,让你找到变量的父亲是啥

    题解:

    暴力找就好了……

    代码

    #include <cstdio>
    #include <cmath>
    #include <cstring>
    #include <ctime>
    #include <iostream>
    #include <algorithm>
    #include <set>
    #include <vector>
    #include <sstream>
    #include <queue>
    #include <typeinfo>
    #include <fstream>
    #include <map>
    #include <stack>
    typedef long long ll;
    using namespace std;
    //freopen("D.in","r",stdin);
    //freopen("D.out","w",stdout);
    #define sspeed ios_base::sync_with_stdio(0);cin.tie(0)
    #define test freopen("test.txt","r",stdin)
    const int maxn=202501;
    #define mod 1000000007
    #define eps 1e-9
    const int inf=0x3f3f3f3f;
    const ll infll = 0x3f3f3f3f3f3f3f3fLL;
    inline ll read()
    {
        ll x=0,f=1;char ch=getchar();
        while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
        while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
        return x*f;
    }
    //**************************************************************************************
    
    struct node
    {
        int x,y;
    };
    node a[maxn];
    char ss[101][101];
    string s;
    int main()
    {
        int n=read();
        for(int i=0;i<n;i++)
            gets(ss[i]);
        int num=0;
        for(int i=0;i<n;i++)
            for(int j=0;j<strlen(ss[i]);j++)
            {
                s+=ss[i][j];
                a[num].x=i,a[num++].y=j;
            }
        for(int i=0;i<s.size();i++)
        {
            if(s[i]<='z'&&s[i]>='a')
            {
                int flag=0;
                int ans=0;
                for(int j=i-1;j>=0;j--)
                {
                    if(ans==0&&s[j]==s[i])
                    {
                        printf("%d:%d: warning: shadowed declaration of %c, the shadowed position is %d:%d
    ",a[i].x+1,a[i].y+1,s[i],a[j].x+1,a[j].y+1);
                        flag=1;
                    }
                    if(flag)
                        break;
                    if(s[j]=='}')
                        ans++;
                    if(s[j]=='{'&&ans>0)
                        ans--;
                }
    
            }
        }
    }
  • 相关阅读:
    [leetcode]算法题目
    JQuery功能查询页
    [C语言]一个很实用的服务端和客户端进行TCP通信的实例
    Siege——多线程编程最佳实例
    CodeIgniter框架中关于URL(index.php)的那些事
    web压测工具http_load原理分析
    【JAVA】文件各行打乱
    【JAVA】HashMap的原理及多线程下死循环的原因
    【JAVA】高并发优化细节点
    【Linux】日志分析工具grep sed sort
  • 原文地址:https://www.cnblogs.com/qscqesze/p/4671387.html
Copyright © 2011-2022 走看看