zoukankan      html  css  js  c++  java
  • CodeForces 1209 A. Cards with Numbers

    A. Cards with Numbers
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    input.txt
    output
    output.txt

    Petya has got 2n cards, each card contains some integer. The numbers on the cards can be the same. Let's index all cards by consecutive integers from 1 to 2n. We'll denote the number that is written on a card with number i, as ai. In order to play one entertaining game with his friends, Petya needs to split the cards into pairs so that each pair had equal numbers on the cards. Help Petya do that.

    Input

    The first line contains integer n (1 ≤ n ≤ 3·105). The second line contains the sequence of 2n positive integers a1, a2, ..., a2n (1 ≤ ai ≤ 5000) — the numbers that are written on the cards. The numbers on the line are separated by single spaces.

    Output

    If it is impossible to divide the cards into pairs so that cards in each pair had the same numbers, print on a single line integer -1. But if the required partition exists, then print n pairs of integers, a pair per line — the indices of the cards that form the pairs.

    Separate the numbers on the lines by spaces. You can print the pairs and the numbers in the pairs in any order. If there are multiple solutions, print any of them.

    Sample test(s)
    input
    3
    20 30 10 30 20 10
    output
    4 2
    1 5
    6 3
    input
    1
    1 2
    output
    -1

    解题思路: 虽然有3*10^5个数字,但是大小在[1,5000]之内,对[1,5000]的每一个值出现的位置记录起来
    若任意个值出现的次数为奇数则输出-1,否则输出每对就可以了。
    View Code
     1 #include<stdio.h>
     2 #include<string.h>
     3 #include<vector>
     4 #include<algorithm>
     5 #include<iostream>
     6 using namespace std;
     7 
     8 const int N = 300009;
     9 const int M = 5010;
    10 
    11 vector<int> Q[M];
    12 int n, m;
    13 int main()
    14 {
    15     freopen("input.txt", "r", stdin);
    16     freopen("output.txt", "w", stdout);
    17     while( scanf("%d", &n) != EOF)
    18     {
    19             for(int i = 0; i <= M; i++) Q[i].clear();    
    20             for(int i = 1; i <= (n<<1); i++)
    21             {
    22                 int x; scanf("%d", &x);
    23                 Q[x].push_back(i);
    24             }
    25             bool flag = true;    
    26             for(int i = 1; i < M; i++)
    27             {
    28                     int cnt = Q[i].size();
    29                     if( cnt&1 ){
    30                         flag = false;
    31                         printf("-1\n");
    32                         break;    
    33                     }
    34             }
    35             if( flag )
    36             {
    37                 for(int i = 1; i < M; i++)
    38                 {
    39                     int cnt = Q[i].size();
    40                     for(int j = 0; j < cnt; j += 2)
    41                         printf("%d %d\n", Q[i][j], Q[i][j+1] );    
    42                 }
    43             }
    44     }
    45     return 0;
    46 }
  • 相关阅读:
    .Net Core主机配置
    .NET Core 初识
    控制反转IOC,依赖注入DI理解
    依赖倒置原则解析,理解面向抽象编程
    工厂模式
    IOC 概念
    利用Comparator排序
    使用Integer类实现二叉树排序
    先按成绩由高到低,相等则按年龄由低到高
    对象销毁之前进行某些操作
  • 原文地址:https://www.cnblogs.com/yefeng1627/p/2810364.html
Copyright © 2011-2022 走看看