1041 Be Unique (20)

简介: #include #include #include #include #include using namespace std; int main() { int n; cin >> n;...
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
using namespace std;
  
int main() {  
    int n;
	cin >> n;
	vector<int> v(n);
	map<int, int> ma;
	for(int i = 0; i < n; i++){
		cin >> v[i];
		if(!ma[v[i]]){
			ma[v[i]] = 1;
		}else{
			ma[v[i]]++;
		}
	}
	for(int i = 0; i < n; i++ ){
		if(ma[v[i]] == 1){
			cout << v[i] << endl;
			return 0;
		}
	}
    cout << "None\n";
    return 0;  
}  

目录
相关文章
|
9天前
|
SQL
UNIQUE
【11月更文挑战第14天】
23 6
|
2月前
|
缓存
Foreign Key Optimization
当查询涉及大量不同列组合时,可将不常用数据拆分至独立表中,每个表包含若干列,并通过复制主表的数字ID作为关联纽带。这样每个小表都有一个主键以快速检索数据,并可通过联接操作实现按需查询,减少I/O操作和缓存占用,从而优化查询性能,提升磁盘读取效率。
|
关系型数据库 MySQL 索引
不会2023年你还不知道Mysql中index、primary key、unique key、foreign key是什么和如何创建吧?
不会2023年你还不知道Mysql中index、primary key、unique key、foreign key是什么和如何创建吧?
95 0
|
6月前
|
关系型数据库 分布式数据库 PolarDB
InnoDB unique check 的问题
unique secondary index 是客户经常使用的场景,用来保证index 上的record 的唯一性。但是大量的客户在使用unique secondary index以后,会发现偶尔会有死锁或者不应该锁等待的时候,却发生锁等待的情况。也有很多客户来问我们这个问题。理论上PolarDB ...
108 0
InnoDB unique check 的问题
|
存储 关系型数据库 MySQL
ERROR 1215 (HY000): Cannot add foreign key constraint
ERROR 1215 (HY000): Cannot add foreign key constraint
ERROR 1215 (HY000): Cannot add foreign key constraint
|
C++ 容器
STL中的unique和unique_copy函数
一、unique函数 这个函数的功能就是删除相邻的重复元素,然后重新排列输入范围内的元素,并返回一个最后一个无重复值的迭代器(并不改变容器长度)。 例如: 1 vectorq(10); 2 for(int i = 0; i < 10; i++){ 3 ...
1246 0
|
关系型数据库
|
关系型数据库
|
C++ 关系型数据库 Oracle