2 条题解

  • 0
    @ 2024-4-7 11:02:44
    #include<map>
    #include<utility>
    using namespace std;
    map<string,string>ma;
    pair<string,string>p;
    int main()
    {
        int m, n, a;
        string s,t,str;
        cin>>n>>m;
        while(n--)
        {
            cin>>s>>t;
            p.first = s;
            p.second = t;
            ma.insert(p);
        }
        while(m--)
        {
            cin>>a>>str;
            if(a==1)
            {
                if(ma.find(str)!=ma.end())
                {
                    cout<<ma[str];
                }
                else{
                    cout<<"NO";
                }
            }
            if(a==2)
            {
                if(str<=(ma.begin()->first))
                {
                    cout<<"NO";
                }
                else
                {
                    auto it = ma.lower_bound(str);
                    it--;
                    cout<<it->second;
                }
            }
            if(a==3)
            {
                if(str>=((--ma.end())->first))
                {
                    cout<<"NO";
                }
                else
                {
                    auto it = ma.upper_bound(str);
                    cout<<it->second;
                }
            }
            cout<<endl;
        }
    }
    
    • 0
      @ 2024-4-5 13:35:29

      用文档中给的代码总有一个测试点TLE,故自己写了一个,成功AC。

      #include <iostream>
      #include <algorithm>
      
      using namespace std;
      
      int main()
      {
          int n, t[1000100];
        
          cin >> n;
      
          for (int i = 0; i < n; i++)
              scanf("%d", &t[i]);
        
          sort(t, t + n);
          printf("%d", t[0]);
      
          for (int i = 1; i < n; i++)
              if (t[i] != t[i - 1])
                  printf(" %d", t[i]);
          puts("");
      }
      
      • 1

      信息

      ID
      68
      时间
      1000ms
      内存
      256MiB
      难度
      8
      标签
      递交数
      561
      已通过
      105
      上传者