Is there any site or place on codeforces itself where i can find the list of all tags ? I was practicing graphs but problems seem too scattered like there are tags graph and dfs and similar. Where can i find the list of all the tags on codeforces ?
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
Is there any site or place on codeforces itself where i can find the list of all tags ? I was practicing graphs but problems seem too scattered like there are tags graph and dfs and similar. Where can i find the list of all the tags on codeforces ?
Название |
---|
hello, karankapoor. I write a Java problem to find all the tags on codeforces. here are 35 tags on codeforces now. they are: expression parsing,fft,two pointers,binary search,dsu,strings,number theory,data structures,hashing,shortest paths,matrices,string suffix structures,graph matchings,dp,dfs and similar,meet-in-the-middle,games,schedules,constructive algorithms,greedy,bitmasks,divide and conquer,flows,geometry,math,sortings,ternary search,combinatorics,brute force,implementation,2-sat,trees,probabilities,graphs,chinese remainder theorem, and you can paste any of the 35 words described upon to go to the corresponding tags page with a prefix "http://mirror.codeforces.com/problemset/tags/" for example ,you can go to "http://mirror.codeforces.com/problemset/tags/dp" to find all dp problems. here are the Java code I used to find all the tags: http://paste.ubuntu.com/14239857/ may it be helpful to you:) and below are all the corresponding 35 tag pages: http://mirror.codeforces.com/problemset/tags/expression%20parsing http://mirror.codeforces.com/problemset/tags/fft http://mirror.codeforces.com/problemset/tags/two%20pointers http://mirror.codeforces.com/problemset/tags/binary%20search http://mirror.codeforces.com/problemset/tags/dsu http://mirror.codeforces.com/problemset/tags/strings http://mirror.codeforces.com/problemset/tags/number%20theory http://mirror.codeforces.com/problemset/tags/data%20structures http://mirror.codeforces.com/problemset/tags/hashing http://mirror.codeforces.com/problemset/tags/shortest%20paths http://mirror.codeforces.com/problemset/tags/matrices http://mirror.codeforces.com/problemset/tags/string%20suffix%20structures http://mirror.codeforces.com/problemset/tags/graph%20matchings http://mirror.codeforces.com/problemset/tags/dp http://mirror.codeforces.com/problemset/tags/dfs%20and%20similar http://mirror.codeforces.com/problemset/tags/meet-in-the-middle http://mirror.codeforces.com/problemset/tags/games http://mirror.codeforces.com/problemset/tags/schedules http://mirror.codeforces.com/problemset/tags/constructive%20algorithms http://mirror.codeforces.com/problemset/tags/greedy http://mirror.codeforces.com/problemset/tags/bitmasks http://mirror.codeforces.com/problemset/tags/divide%20and%20conquer http://mirror.codeforces.com/problemset/tags/flows http://mirror.codeforces.com/problemset/tags/geometry http://mirror.codeforces.com/problemset/tags/math http://mirror.codeforces.com/problemset/tags/sortings http://mirror.codeforces.com/problemset/tags/ternary%20search http://mirror.codeforces.com/problemset/tags/combinatorics http://mirror.codeforces.com/problemset/tags/brute%20force http://mirror.codeforces.com/problemset/tags/implementation http://mirror.codeforces.com/problemset/tags/2-sat http://mirror.codeforces.com/problemset/tags/trees http://mirror.codeforces.com/problemset/tags/probabilities http://mirror.codeforces.com/problemset/tags/graphs http://mirror.codeforces.com/problemset/tags/chinese%20remainder%20theorem
Thanks alot AnswerNotFound for the help. Can u explain me how to run this code in case i wish to know if tags get updtaed in future ? I have not coded in Java. Did u run it in your IDE to get the list of all the tags ?
if you use windows, you can go to google to search "how to download and install JDK on windows", and find a blog which teach you how to install JDK on windows.such like this blog: http://docs.oracle.com/javase/7/docs/webnotes/install/windows/jdk-installation-windows.html if you use linux, I think there are some easy way to install jdk, for example, if you use ubuntu, you can input "sudo apt-get install default-java -y" on console to install a JDK edition. after that, input "java -version" on you windows command line or linux console to see whether it is correctly installed.If you've correctly installed JDK,it will show you the Java version. Sorry for my poor English:) after installed Java, you should copy the code(from http://paste.ubuntu.com/14239857/) and store them in a file named "FindAllTags.java".in command line first input "javac FindAllTags.java", then input "java FindAllTags", then you will find the result. the Java IDE I use is called "Eclipse", you can compile the java file in Eclipse. about how to use these series of things may be a long story to tell, if you are interested in Java, I suggest you spend one month to learn it, it's much like C language. sorry for that I can only use Java to get the content of web pages.
Thanks alot again for the help. :)
I suppose it doesn't work for now.
a2oj.com contains a lot of tags. Maybe it can help you out.
I referred a2oj.com however even it did not have recent updated problems.The above list is quite good.Maybe we can refer that :)